Plugin Directory

Changeset 2807251


Ignore:
Timestamp:
10/30/2022 01:37:27 PM (3 years ago)
Author:
tivnet
Message:

2.10.5

Location:
wpglobus/trunk
Files:
4 deleted
74 edited

Legend:

Unmodified
Added
Removed
  • wpglobus/trunk/includes/builders/elementor/class-wpglobus-elementor.php

    r2380338 r2807251  
    55 * @since 2.2.31 We are providing support for `External File` only. @see elementor\core\files\css\base.php::use_external_file().
    66 * @since 2.4.12 Disable elementor support for post, that doesn't use elementor builder.
    7                  Add submit box switcher to ON/OFF elementor's support.
     7 *               Add submit box switcher to ON/OFF elementor's support.
     8 * @since 2.10.5 Update language switcher.               
    89 *
    910 * @package WPGlobus\Builders\Elementor
     
    501502                <div class="elementor-panel-menu-item" id="wpglobus-elementor-panel-menu-item" style="cursor:auto;">
    502503                    <div class="elementor-panel-menu-item-icon">
    503                         <i class="fa fa-globe"></i>
     504                        <i class="eicon-globe"></i>
    504505                    </div>
    505506                    <div class="elementor-panel-menu-item-title" id="wpglobus-elementor-selector-box"
    506507                            style="padding-top:0;">
    507508                        <span id="wpglobus-elementor-selector-title"
    508                                 style="cursor:pointer;"><?php esc_html_e( 'WPGlobus languages', 'wpglobus' ); ?></span>
     509                                style="cursor:pointer;color:#6d7882;"><?php esc_html_e( 'WPGlobus languages', 'wpglobus' ); ?></span>
    509510                        <ul id="wpglobus-elementor-selector" style="display:none;margin:10px;" class="hidden">
    510511                            <?php
     
    529530            <script type='text/javascript'>
    530531                /* <![CDATA[ */
    531                 var WPGlobusTimeID;
    532                 WPGlobusTimeID = setInterval(function(){
     532                var WPGlobusIntervalID;
     533                WPGlobusIntervalID = setInterval(function(){
    533534                    if ( jQuery("#elementor-panel-header-menu-button").length === 0 || 'undefined' === typeof elementor.config.version ) {
    534535                        return;
    535536                    }
    536                     clearInterval(WPGlobusTimeID);
     537                    clearInterval(WPGlobusIntervalID);
    537538                    var wpglobusElementorPanelMenu = jQuery("#wpglobus-elementor-wrapper").html();
    538539                    jQuery(document).on('click', "#elementor-panel-header-menu-button", function () {
    539                         if ( elementor.config.version[0] == '3' ) {
    540                             jQuery(".elementor-panel-menu-item-exit-to-dashboard").before(wpglobusElementorPanelMenu);
     540                        if ( elementor.config.version[0] === '3' ) {
     541                            var elems = [".elementor-panel-menu-item-exit-to-dashboard",".elementor-panel-menu-item-exit"];
     542                            jQuery.each(elems, function(i,elem) {
     543                                var $item = jQuery(elem);
     544                                if ( $item.length === 1 ) {
     545                                    $item.before(wpglobusElementorPanelMenu);
     546                                    return false;
     547                                }
     548                            });
    541549                        } else {
    542550                            jQuery(".elementor-panel-menu-item").eq(7).after(wpglobusElementorPanelMenu);
  • wpglobus/trunk/includes/class-wpglobus-config.php

    r2650038 r2807251  
    506506     * Load .MO file from the plugin's `languages` folder.
    507507     * Used instead of @see load_plugin_textdomain to ignore translation files from WordPress.org, which are outdated.
    508      * To force loading from a different place, use the `load_textdomain_mofile` filter.
    509508     *
    510509     * @since 1.9.6
     
    524523         */
    525524        $locale = apply_filters( 'plugin_locale', is_admin() ? get_user_locale() : get_locale(), $domain );
    526         $mofile = WPGlobus::languages_path() . '/' . $domain . '-' . $locale . '.mo';
     525
     526        /**
     527         * When we do not have a specific country translation, try using what we have.
     528         *
     529         * @since 2.10.5
     530         */
     531        $same_pomo   = array(
     532            'fr_BE' => 'fr_FR',
     533            'fr_CA' => 'fr_FR',
     534        );
     535        $pomo_locale = isset( $same_pomo[ $locale ] ) ? $same_pomo[ $locale ] : $locale;
     536        $mofile      = WPGlobus::languages_path() . '/' . $domain . '-' . $pomo_locale . '.mo';
     537
     538        /**
     539         * To force loading from a different place, use the `load_textdomain_mofile` filter.
     540         *
     541         * @since 2.10.5
     542         */
     543        $mofile = apply_filters( 'load_textdomain_mofile', $mofile, $domain );
     544
    527545        load_textdomain( $domain, $mofile );
    528546    }
  • wpglobus/trunk/includes/class-wpglobus-filters.php

    r2768343 r2807251  
    4444     */
    4545    public static function filter__extract_text( $text ) {
    46    
     46
    4747        return WPGlobus_Core::extract_text(
    4848            $text,
     
    7474        if ( $query->is_main_query() || $query->get( 'wpglobus_force_filter__the_posts' ) ) {
    7575            foreach ( $posts as $post ) {
    76                
     76
    7777                /**
    7878                 * Don't filter post of disabled post type.
     
    8282                    continue;
    8383                }
    84                
     84
    8585                WPGlobus_Core::translate_wp_post(
    8686                    $post,
     
    519519
    520520        static $cached_locale = null;
    521 
    522         /**
    523          * Special case: in admin area, show everything in the language of admin interface.
    524          * (set in the General Settings in WP 4.1)
    525          * We need to exclude is_admin when it's a front-originated AJAX,
    526          * so we are doing a "hack" checking.
    527          *
    528          * @see WPGlobus_WP::is_admin_doing_ajax.
     521        if ( null !== $cached_locale ) {
     522            return $cached_locale;
     523        }
     524
     525        /**
     526         * Admin.
     527         * In admin area, we show everything in the language of admin interface.
     528         * The admin interface is set in the Settings -> General and saved as 'WPLANG' option.
     529         * For that, we only need to set the WPGlobus language, not changing the locale.
     530         * Note: no caching in admin!
    529531         */
    530532        if (
    531             is_admin() &&
    532             ( ! WPGlobus_WP::is_doing_ajax() || WPGlobus_WP::is_admin_doing_ajax() )
     533            // We need to exclude is_admin when it's a front-originated AJAX.
     534            is_admin()
     535            && ( ! WPGlobus_WP::is_doing_ajax() || WPGlobus_WP::is_admin_doing_ajax() )
    533536            && apply_filters( 'wpglobus_use_admin_wplang', true )
    534537        ) {
    535538            /**
    536539             * Set locale in admin area using WPLANG option.
    537              *
    538              * @since 2.10.3 Do not set if WPLANG is empty.
    539540             */
    540             $wp_lang = get_option( 'WPLANG' );
    541             if ( ! empty( $wp_lang ) ) {
    542                 WPGlobus::Config()->set_language( $wp_lang );
    543             }
    544         } else {
    545             /**
    546              * Caching breaks the admin language switcher. So, use only when not in admin area.
    547              * @since 2.10.3
    548              */
    549             if ( null !== $cached_locale ) {
    550                 return $cached_locale;
    551             }
    552         }
    553 
    554         /**
    555          * Only set locale if it's enabled in WPGlobus.
     541            $locale_from_wplang = get_option( 'WPLANG' );
     542            if ( ! $locale_from_wplang ) {
     543                $locale_from_wplang = 'en_US';
     544            }
     545            WPGlobus::Config()->set_language( $locale_from_wplang );
     546
     547            // Return w/o caching - important!
     548            return $locale_from_wplang;
     549        }
     550
     551        /**
     552         * Set locale if the language is enabled in WPGlobus.
    556553         *
    557          * @since 2.10.3 - check always, not only in admin.
    558          * @since 2.10.3 - Update cache.
    559          */
    560         if ( WPGlobus::Config()->is_enabled_locale( $locale ) ) {
    561             $locale        = WPGlobus::Config()->locale[ WPGlobus::Config()->language ];
     554         * @since 2.10.3 - Cache it.
     555         */
     556        $language = WPGlobus::Config()->language;
     557        if ( WPGlobus_Utils::is_enabled( $language ) ) {
     558            $locale        = WPGlobus::Config()->locale[ $language ];
    562559            $cached_locale = $locale;
    563560        }
     
    753750     * @since 1.0.6
    754751     * @since 2.4.10 Prevent handling of incorrect widget instance's settings.
    755      * @since 2.8.5 Added checking for translations in $widget_setting. 
     752     * @since 2.8.5 Added checking for translations in $widget_setting.
    756753     *              Using `extract_text` instead of `text_filter`.
    757754     *
     
    761758     */
    762759    public static function filter__widget_display_callback( $instance ) {
    763        
     760
    764761        /**
    765762         * Prevent handling of incorrect widget instance's settings.
     
    768765        if ( empty($instance) || is_bool($instance) ) {
    769766            return $instance;
    770         }           
     767        }
    771768
    772769        foreach ( $instance as &$widget_setting ) {
     
    12511248                $option_values = array();
    12521249            }
    1253            
     1250
    12541251            foreach ( $_enabled_keys as $field ) {
    12551252
     
    12921289     *
    12931290     * @param boolean $use_widgets_block_editor Whether or not to use the block editor to manage widgets.
    1294      */ 
     1291     */
    12951292    public static function filter__use_widgets_block_editor($use_block_editor) {
    1296    
     1293
    12971294        if ( ! $use_block_editor ) {
    1298            
     1295
    12991296            $theme_support_widgets_block_editor = get_theme_support( 'widgets-block-editor' );
    1300            
     1297
    13011298            if ( ! $theme_support_widgets_block_editor ) {
    13021299                return $theme_support_widgets_block_editor;
     
    13071304            return $use_block_editor;
    13081305        }
    1309        
     1306
    13101307        return false;
    13111308    }
  • wpglobus/trunk/includes/class-wpglobus-wp.php

    r2647967 r2807251  
    6161                self::is_http_post_action( 'save-widget' ) ||
    6262                self::is_http_post_action( 'customize_save' ) ||
    63                 self::is_http_get_action( 'ajax-tag-search' )
     63                self::is_http_get_action( 'ajax-tag-search' ) ||
     64                (
     65                    self::is_http_post_action( 'WPGlobus_process_ajax' )
     66                    && isset( $_POST['order']['action'] )
     67                    && 'wpglobus_select_lang' === $_POST['order']['action']
     68                )
    6469            )
    6570        );
  • wpglobus/trunk/languages/wpglobus-ar.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    77msgstr ""
    88"Project-Id-Version: WPGlobus Multilingual\n"
    9 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    10 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     9"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     10"Last-Translator: Gregory Karpinsky <[email protected]>, 2018\n"
    1111"Language-Team: Arabic (http://www.transifex.com/wp-translations/wpglobus-"
    1212"multilingual/language/ar/)\n"
     
    12721272msgid "https://wpglobus.com/"
    12731273msgstr "https://wpglobus.com/"
    1274 
    1275 #~ msgid ""
    1276 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1277 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1278 #~ "directly and let us know how did it work for you!"
    1279 #~ msgstr ""
    1280 #~ "نحن نخطط لإبقاء %sقائمة بالمترجمين %s في موقع WPGlobus. هذا ليس إقرار، هي "
    1281 #~ "فقط مجاملة. من فضلك تواصل معهم وأعلمنا ماذا حدث معك!"
  • wpglobus/trunk/languages/wpglobus-be.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: Gregory Karpinsky <[email protected]>, 2018,2020\n"
    1010"Language-Team: Belarusian (http://www.transifex.com/wp-translations/wpglobus-"
    1111"multilingual/language/be/)\n"
     
    13301330msgid "https://wpglobus.com/"
    13311331msgstr "https://wpglobus.com/ru/"
    1332 
    1333 #~ msgid ""
    1334 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1335 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1336 #~ "directly and let us know how did it work for you!"
    1337 #~ msgstr ""
    1338 #~ "Мы планируем поддерживать %s список переводчиков %s на сайте WPGlobus. Не "
    1339 #~ "воспринимайте это как конкретную рекомендацию! Свяжитесь с переводчиками "
    1340 #~ "напрямую и потом расскажите нам, довольны ли Вы результатом."
  • wpglobus/trunk/languages/wpglobus-bg_BG.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    55msgstr ""
    66"Project-Id-Version: WPGlobus Multilingual\n"
    7 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    8 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     7"PO-Revision-Date: 2015-09-03 17:28+0000\n"
    98"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/wp-"
    109"translations/wpglobus-multilingual/language/bg_BG/)\n"
  • wpglobus/trunk/languages/wpglobus-de_CH.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    88msgstr ""
    99"Project-Id-Version: WPGlobus Multilingual\n"
    10 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    11 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     10"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     11"Last-Translator: Gregory Karpinsky <[email protected]>, 2015,2017\n"
    1212"Language-Team: German (Switzerland) (http://www.transifex.com/wp-"
    1313"translations/wpglobus-multilingual/language/de_CH/)\n"
  • wpglobus/trunk/languages/wpglobus-de_DE.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    88msgstr ""
    99"Project-Id-Version: WPGlobus Multilingual\n"
    10 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    11 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     10"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     11"Last-Translator: Gregory Karpinsky <[email protected]>, 2015,2017,2019\n"
    1212"Language-Team: German (Germany) (http://www.transifex.com/wp-translations/"
    1313"wpglobus-multilingual/language/de_DE/)\n"
  • wpglobus/trunk/languages/wpglobus-el.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: Gregory Karpinsky <[email protected]>, 2017\n"
    1010"Language-Team: Greek (http://www.transifex.com/wp-translations/wpglobus-"
    1111"multilingual/language/el/)\n"
  • wpglobus/trunk/languages/wpglobus-en_AU.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    77msgstr ""
    88"Project-Id-Version: WPGlobus Multilingual\n"
    9 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    10 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     9"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     10"Last-Translator: Stephen Edgar, 2017\n"
    1111"Language-Team: English (Australia) (http://www.transifex.com/wp-translations/"
    1212"wpglobus-multilingual/language/en_AU/)\n"
     
    13241324msgid "https://wpglobus.com/"
    13251325msgstr "https://wpglobus.com/"
    1326 
    1327 #~ msgid ""
    1328 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1329 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1330 #~ "directly and let us know how did it work for you!"
    1331 #~ msgstr ""
    1332 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1333 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1334 #~ "directly and let us know how did it work for you!"
  • wpglobus/trunk/languages/wpglobus-en_CA.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: Gregory Karpinsky <[email protected]>, 2017\n"
    1010"Language-Team: English (Canada) (http://www.transifex.com/wp-translations/"
    1111"wpglobus-multilingual/language/en_CA/)\n"
     
    13231323msgid "https://wpglobus.com/"
    13241324msgstr "https://wpglobus.com/"
    1325 
    1326 #~ msgid ""
    1327 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1328 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1329 #~ "directly and let us know how did it work for you!"
    1330 #~ msgstr ""
    1331 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1332 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1333 #~ "directly and let us know how did it work for you!"
  • wpglobus/trunk/languages/wpglobus-en_GB.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    77msgstr ""
    88"Project-Id-Version: WPGlobus Multilingual\n"
    9 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    10 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     9"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     10"Last-Translator: Andi Chandler <[email protected]>, 2017\n"
    1111"Language-Team: English (United Kingdom) (http://www.transifex.com/wp-"
    1212"translations/wpglobus-multilingual/language/en_GB/)\n"
     
    13241324msgid "https://wpglobus.com/"
    13251325msgstr "https://wpglobus.com/"
    1326 
    1327 #~ msgid ""
    1328 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1329 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1330 #~ "directly and let us know how did it work for you!"
    1331 #~ msgstr ""
    1332 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1333 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1334 #~ "directly and let us know how did it work for you!"
  • wpglobus/trunk/languages/wpglobus-en_NZ.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: Gregory Karpinsky <[email protected]>, 2017\n"
    1010"Language-Team: English (New Zealand) (http://www.transifex.com/wp-"
    1111"translations/wpglobus-multilingual/language/en_NZ/)\n"
     
    13231323msgid "https://wpglobus.com/"
    13241324msgstr "https://wpglobus.com/"
    1325 
    1326 #~ msgid ""
    1327 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1328 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1329 #~ "directly and let us know how did it work for you!"
    1330 #~ msgstr ""
    1331 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1332 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1333 #~ "directly and let us know how did it work for you!"
  • wpglobus/trunk/languages/wpglobus-en_US.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    55msgstr ""
    66"Project-Id-Version: WPGlobus Multilingual\n"
    7 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    8 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     7"PO-Revision-Date: 2015-09-03 17:28+0000\n"
    98"Language-Team: English (United States) (http://www.transifex.com/wp-"
    109"translations/wpglobus-multilingual/language/en_US/)\n"
     
    14081407msgid "https://wpglobus.com/"
    14091408msgstr "https://wpglobus.com/"
    1410 
    1411 #~ msgid ""
    1412 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1413 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1414 #~ "directly and let us know how did it work for you!"
    1415 #~ msgstr ""
    1416 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1417 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1418 #~ "directly and let us know how did it work for you!"
  • wpglobus/trunk/languages/wpglobus-en_ZA.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: Gregory Karpinsky <[email protected]>, 2017\n"
    1010"Language-Team: English (South Africa) (http://www.transifex.com/wp-"
    1111"translations/wpglobus-multilingual/language/en_ZA/)\n"
     
    13231323msgid "https://wpglobus.com/"
    13241324msgstr "https://wpglobus.com/"
    1325 
    1326 #~ msgid ""
    1327 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1328 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1329 #~ "directly and let us know how did it work for you!"
    1330 #~ msgstr ""
    1331 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1332 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1333 #~ "directly and let us know how did it work for you!"
  • wpglobus/trunk/languages/wpglobus-es_AR.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: FX Bénard <[email protected]>, 2015\n"
    1010"Language-Team: Spanish (Argentina) (http://www.transifex.com/wp-translations/"
    1111"wpglobus-multilingual/language/es_AR/)\n"
     
    1414"Content-Type: text/plain; charset=UTF-8\n"
    1515"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     16"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
     17"1 : 2;\n"
    1718
    1819msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-es_CL.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: FX Bénard <[email protected]>, 2015\n"
    1010"Language-Team: Spanish (Chile) (http://www.transifex.com/wp-translations/"
    1111"wpglobus-multilingual/language/es_CL/)\n"
     
    1414"Content-Type: text/plain; charset=UTF-8\n"
    1515"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     16"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
     17"1 : 2;\n"
    1718
    1819msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-es_CO.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: FX Bénard <[email protected]>, 2015\n"
    1010"Language-Team: Spanish (Colombia) (http://www.transifex.com/wp-translations/"
    1111"wpglobus-multilingual/language/es_CO/)\n"
     
    1414"Content-Type: text/plain; charset=UTF-8\n"
    1515"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     16"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
     17"1 : 2;\n"
    1718
    1819msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-es_CR.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: FX Bénard <[email protected]>, 2015\n"
    1010"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/wp-"
    1111"translations/wpglobus-multilingual/language/es_CR/)\n"
     
    1414"Content-Type: text/plain; charset=UTF-8\n"
    1515"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     16"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
     17"1 : 2;\n"
    1718
    1819msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-es_ES.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: FX Bénard <[email protected]>, 2015\n"
    1010"Language-Team: Spanish (Spain) (http://www.transifex.com/wp-translations/"
    1111"wpglobus-multilingual/language/es_ES/)\n"
     
    1414"Content-Type: text/plain; charset=UTF-8\n"
    1515"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     16"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
     17"1 : 2;\n"
    1718
    1819msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-es_GT.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: FX Bénard <[email protected]>, 2015\n"
    1010"Language-Team: Spanish (Guatemala) (http://www.transifex.com/wp-translations/"
    1111"wpglobus-multilingual/language/es_GT/)\n"
     
    1414"Content-Type: text/plain; charset=UTF-8\n"
    1515"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     16"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
     17"1 : 2;\n"
    1718
    1819msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-es_MX.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: FX Bénard <[email protected]>, 2015\n"
    1010"Language-Team: Spanish (Mexico) (http://www.transifex.com/wp-translations/"
    1111"wpglobus-multilingual/language/es_MX/)\n"
     
    1414"Content-Type: text/plain; charset=UTF-8\n"
    1515"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     16"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
     17"1 : 2;\n"
    1718
    1819msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-es_PE.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: FX Bénard <[email protected]>, 2015\n"
    1010"Language-Team: Spanish (Peru) (http://www.transifex.com/wp-translations/"
    1111"wpglobus-multilingual/language/es_PE/)\n"
     
    1414"Content-Type: text/plain; charset=UTF-8\n"
    1515"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     16"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
     17"1 : 2;\n"
    1718
    1819msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-es_PR.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: FX Bénard <[email protected]>, 2015\n"
    1010"Language-Team: Spanish (Puerto Rico) (http://www.transifex.com/wp-"
    1111"translations/wpglobus-multilingual/language/es_PR/)\n"
     
    1414"Content-Type: text/plain; charset=UTF-8\n"
    1515"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     16"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
     17"1 : 2;\n"
    1718
    1819msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-es_VE.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: FX Bénard <[email protected]>, 2015\n"
    1010"Language-Team: Spanish (Venezuela) (http://www.transifex.com/wp-translations/"
    1111"wpglobus-multilingual/language/es_VE/)\n"
     
    1414"Content-Type: text/plain; charset=UTF-8\n"
    1515"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     16"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
     17"1 : 2;\n"
    1718
    1819msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-et.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: Rivo Zängov <[email protected]>, 2018\n"
    1010"Language-Team: Estonian (http://www.transifex.com/wp-translations/wpglobus-"
    1111"multilingual/language/et/)\n"
  • wpglobus/trunk/languages/wpglobus-fr_FR.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
    44# Franck, 2015-2017
    55# FX Bénard <[email protected]>, 2015-2017
    6 # Gregory Karpinsky <[email protected]>, 2015,2018
     6# Gregory Karpinsky <[email protected]>, 2015,2018,2022
    77msgid ""
    88msgstr ""
    99"Project-Id-Version: WPGlobus Multilingual\n"
    10 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    11 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     10"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     11"Last-Translator: Gregory Karpinsky <[email protected]>, 2015,2018,2022\n"
    1212"Language-Team: French (France) (http://www.transifex.com/wp-translations/"
    1313"wpglobus-multilingual/language/fr_FR/)\n"
     
    1616"Content-Type: text/plain; charset=UTF-8\n"
    1717"Content-Transfer-Encoding: 8bit\n"
    18 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
     18"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
     19"1000000 == 0 ? 1 : 2;\n"
    1920
    2021msgid "Guide"
     
    198199"%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
    199200msgstr ""
     201"La langue principale est actuellement configurée à %1$s (%2$s). TOUS LES "
     202"TEXTES QUI NE SONT PAS EN %1$s SERONT SUPPRIMÉS ! Pour changer la langue "
     203"principale, veuillez allez dans Réglages."
    200204
    201205msgid "You are about to clean the content of the following database tables:"
     
    445449msgstr ""
    446450"Nous détesterions vous voir partir. Si quelque chose va mal, ne désinstallez "
    447 "pas tout de suite WPGlobus. Veuillez %1$nous contacter%2$s et laissez-nous "
     451"pas tout de suite WPGlobus. Veuillez %1$s nous contacter%2$s et laissez-nous "
    448452"vous aider&nbsp;!"
    449453
     
    10651069"dragging the %3$s icons."
    10661070msgstr ""
    1067 "Placez la %1$ langue principale%2$s de votre site en haut de la liste en "
    1068 "faisant glisser les icônes %3$ ."
     1071"Placez la %1$s langue principale%2$s de votre site en haut de la liste en "
     1072"faisant glisser les icônes %3$s ."
    10691073
    10701074#. translators: placeholders for the "strong" HTML tags.
     
    14291433msgid "https://wpglobus.com/"
    14301434msgstr "https://wpglobus.com/"
    1431 
    1432 #~ msgid ""
    1433 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1434 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1435 #~ "directly and let us know how did it work for you!"
    1436 #~ msgstr ""
    1437 #~ "Nous prévoyons de maintenir une %s liste de traducteurs %s sur le site "
    1438 #~ "web WPGlobus. Ce n’est pas une approbation, juste une courtoisie. "
    1439 #~ "Veuillez les contacter directement et nous faire savoir comment cela "
    1440 #~ "c’est passé pour vous&nbsp;!"
  • wpglobus/trunk/languages/wpglobus-id_ID.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    88msgstr ""
    99"Project-Id-Version: WPGlobus Multilingual\n"
    10 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    11 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     10"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     11"Last-Translator: Gregory Karpinsky <[email protected]>, 2017,2020\n"
    1212"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/wp-"
    1313"translations/wpglobus-multilingual/language/id_ID/)\n"
     
    13281328msgid "https://wpglobus.com/"
    13291329msgstr "https://wpglobus.com/"
    1330 
    1331 #~ msgid ""
    1332 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1333 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1334 #~ "directly and let us know how did it work for you!"
    1335 #~ msgstr ""
    1336 #~ "Kami berencana untuk mempertahankan daftar %s penerjemah %s di situs "
    1337 #~ "WPGlobus. Ini bukan sebuah pengesahan, hanya sopan santun saja. Silahkan "
    1338 #~ "hubungi mereka secara langsung dan beritahu kami bagaimana cara kerjanya "
    1339 #~ "untuk Anda!"
  • wpglobus/trunk/languages/wpglobus-ko_KR.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    55msgstr ""
    66"Project-Id-Version: WPGlobus Multilingual\n"
    7 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    8 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     7"PO-Revision-Date: 2015-09-03 17:28+0000\n"
    98"Language-Team: Korean (Korea) (http://www.transifex.com/wp-translations/"
    109"wpglobus-multilingual/language/ko_KR/)\n"
  • wpglobus/trunk/languages/wpglobus-pl_PL.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    55msgstr ""
    66"Project-Id-Version: WPGlobus Multilingual\n"
    7 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    8 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     7"PO-Revision-Date: 2015-09-03 17:28+0000\n"
    98"Language-Team: Polish (Poland) (http://www.transifex.com/wp-translations/"
    109"wpglobus-multilingual/language/pl_PL/)\n"
  • wpglobus/trunk/languages/wpglobus-pt_BR.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    55msgstr ""
    66"Project-Id-Version: WPGlobus Multilingual\n"
    7 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    8 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     7"PO-Revision-Date: 2015-09-03 17:28+0000\n"
    98"Language-Team: Portuguese (Brazil) (http://www.transifex.com/wp-translations/"
    109"wpglobus-multilingual/language/pt_BR/)\n"
     
    1312"Content-Type: text/plain; charset=UTF-8\n"
    1413"Content-Transfer-Encoding: 8bit\n"
    15 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
     14"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
     15"1000000 == 0 ? 1 : 2;\n"
    1616
    1717msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-pt_PT.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    55msgstr ""
    66"Project-Id-Version: WPGlobus Multilingual\n"
    7 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    8 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     7"PO-Revision-Date: 2015-09-03 17:28+0000\n"
    98"Language-Team: Portuguese (Portugal) (http://www.transifex.com/wp-"
    109"translations/wpglobus-multilingual/language/pt_PT/)\n"
     
    1312"Content-Type: text/plain; charset=UTF-8\n"
    1413"Content-Transfer-Encoding: 8bit\n"
    15 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
     14"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
     15"1000000 == 0 ? 1 : 2;\n"
    1616
    1717msgid "Guide"
  • wpglobus/trunk/languages/wpglobus-ro_RO.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    55msgstr ""
    66"Project-Id-Version: WPGlobus Multilingual\n"
    7 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    8 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     7"PO-Revision-Date: 2015-09-03 17:28+0000\n"
    98"Language-Team: Romanian (Romania) (http://www.transifex.com/wp-translations/"
    109"wpglobus-multilingual/language/ro_RO/)\n"
  • wpglobus/trunk/languages/wpglobus-ru_RU.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    77msgstr ""
    88"Project-Id-Version: WPGlobus Multilingual\n"
    9 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    10 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     9"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     10"Last-Translator: Irina Fedulova <[email protected]>, 2020\n"
    1111"Language-Team: Russian (Russia) (http://www.transifex.com/wp-translations/"
    1212"wpglobus-multilingual/language/ru_RU/)\n"
     
    14161416msgid "https://wpglobus.com/"
    14171417msgstr "https://wpglobus.com/ru/"
    1418 
    1419 #~ msgid ""
    1420 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1421 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1422 #~ "directly and let us know how did it work for you!"
    1423 #~ msgstr ""
    1424 #~ "Мы планируем поддерживать %s список переводчиков %s на сайте WPGlobus. Не "
    1425 #~ "воспринимайте это как конкретную рекомендацию! Свяжитесь с переводчиками "
    1426 #~ "напрямую и потом расскажите нам, довольны ли вы результатом."
  • wpglobus/trunk/languages/wpglobus-sv_SE.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    88msgstr ""
    99"Project-Id-Version: WPGlobus Multilingual\n"
    10 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    11 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     10"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     11"Last-Translator: Gregory Karpinsky <[email protected]>, 2015\n"
    1212"Language-Team: Swedish (Sweden) (http://www.transifex.com/wp-translations/"
    1313"wpglobus-multilingual/language/sv_SE/)\n"
  • wpglobus/trunk/languages/wpglobus-tr_TR.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
     
    66msgstr ""
    77"Project-Id-Version: WPGlobus Multilingual\n"
    8 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    9 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     8"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     9"Last-Translator: BORAHAN CONKEROGLU <[email protected]>, 2015\n"
    1010"Language-Team: Turkish (Turkey) (http://www.transifex.com/wp-translations/"
    1111"wpglobus-multilingual/language/tr_TR/)\n"
  • wpglobus/trunk/languages/wpglobus-uk.po

    r2762913 r2807251  
    1 # Copyright (C) 2021 WPGlobus
     1# Copyright (C) 2022 WPGlobus
    22# This file is distributed under the same license as the WPGlobus package.
    33# Translators:
    44# Gregory Karpinsky <[email protected]>, 2016,2020
    5 # Jack Willson <[email protected]>, 2019,2021
     5# b178f66ae21091f08a6de73093bc629b_f649941 <e1032743bd2bca7a0d63bafff0062cdd_813705>, 2019,2021
    66msgid ""
    77msgstr ""
    88"Project-Id-Version: WPGlobus Multilingual\n"
    9 "PO-Revision-Date: 2021-11-06 13:42+0000\n"
    10 "Last-Translator: Gregory Karpinsky <[email protected]>\n"
     9"PO-Revision-Date: 2015-09-03 17:28+0000\n"
     10"Last-Translator: b178f66ae21091f08a6de73093bc629b_f649941 "
     11"<e1032743bd2bca7a0d63bafff0062cdd_813705>, 2019,2021\n"
    1112"Language-Team: Ukrainian (http://www.transifex.com/wp-translations/wpglobus-"
    1213"multilingual/language/uk/)\n"
     
    14171418msgid "https://wpglobus.com/"
    14181419msgstr "https://wpglobus.com/ru/"
    1419 
    1420 #~ msgid ""
    1421 #~ "We are planning to maintain a %s list of translators %s on the WPGlobus "
    1422 #~ "website. This is not an endorsement, just a courtesy. Please contact them "
    1423 #~ "directly and let us know how did it work for you!"
    1424 #~ msgstr ""
    1425 #~ "Ми плануємо підтримувати%sсписок перекладачів%sна сайті WPGlobus. Не "
    1426 #~ "сприймайте це як конкретну рекомендацію! Зв'яжіться з перекладачами "
    1427 #~ "безпосередньо і потім розкажіть нам, чи задоволені ви результатом."
  • wpglobus/trunk/readme.txt

    r2780653 r2807251  
    219219== Changelog ==
    220220
     221= 2.10.5 =
     222* Fix: (Core/Filters) Translations not loaded correctly in some situations (refactored `\WPGlobus_Filters::filter__get_locale`).
     223* Fix: (Elementor) Update language switcher.
     224* Fix: (Core) Broken translations file `wpglobus-fr_FR.po`.
     225* Tweak: (Core) When we do not have a specific country translation, try using what we have (WIP).
     226
    221227= 2.10.4 =
    222228* (Core/Widgets) Update for the widgets block editor v.2.0.
     
    227233* (Internal) `package.json` - patches for the new `npm`.
    228234
    229 = 2.10.2 =
    230 * (Core/WPGlobus About) Removed obsolete information.
    231 * (Core/WPGlobus) Added filter `wpglobus_disable_switcher` in the `WPGlobus` class.
    232 * Fix: PHP81 notice about passing `null` to `untrailingslashit`.
    233 * Fix: PHP81 notice about passing `null` to `str_replace`.
    234 * Updated WPGlobus language switcher examples file.
    235 
    236 = 2.10.1 =
    237 * (Vendor/Yoast) Added filters for the user Open Graph title and description, Schema Graph name and description.
    238 * (Core) Fixed PHP 8.1 notice about `add_submenu_page()` parameter.
    239 
    240 = 2.10.0 =
    241 * (Compatibility) Tested up to WordPress 6.0
    242 * (Core/Post Types) Added the `elementor-hf` post type to the `"hidden types"` list.
    243 
    244235== Demo Sites ==
    245236
  • wpglobus/trunk/wpglobus.php

    r2780653 r2807251  
    1616 * Text Domain: wpglobus
    1717 * Domain Path: /languages/
    18  * Version: 2.10.4
     18 * Version: 2.10.5
    1919 * Author: WPGlobus
    2020 * Author URI: https://wpglobus.com/
     
    4545}
    4646
    47 define( 'WPGLOBUS_VERSION', '2.10.4' );
     47define( 'WPGLOBUS_VERSION', '2.10.5' );
    4848define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
    4949define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
Note: See TracChangeset for help on using the changeset viewer.