Plugin Directory

Changeset 2002116


Ignore:
Timestamp:
12/27/2018 07:20:51 AM (7 years ago)
Author:
carllockett3
Message:

Update version 2.1.2.4

Location:
auto-post-woocommerce-products/trunk
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • auto-post-woocommerce-products/trunk/README.txt

    r2001944 r2002116  
    55Requires at least: 4.0
    66Tested up to: 5.0.2
    7 Stable tag: 2.1.2.3
     7Stable tag: 2.1.2.4
    88Requires PHP at least: 7.0
    99WC requires at least: 3.3.0
     
    7878
    7979== Changelog ==
    80 =2.1.2.3 =
     80= 2.1.2.4 =
     81* 27-DEC-2018
     82* Added button to manually reset the products to Tweet list.
     83* Fixed a few other issues including retrieving Bitly shortlinks which had stopped working.
     84
     85= 2.1.2.3 =
    8186* 19-DEC-2018
    8287* Added Bulk Actions to the Product list tab. The ability to edit products with bulk edit is currently being added to the plugin.
  • auto-post-woocommerce-products/trunk/admin/apwp-woocommerce-tab.php

    r2001944 r2002116  
    1717 */
    1818function display_tab_two() {
     19    global $theme;
    1920    $options = new Apwp_Options();
    2021    ?>
     
    3738                $prod_to_post = count($options->get('atwc_products_post'));
    3839            }
    39            
     40
    4041            $ttl = $options->get('apwp_total_products_to_tweet');
    4142            ?><div class="auto-post-cue-note b shadows-upper" style="">
     
    6970                            . 'media. The listing data is not saved in this plugin, '
    7071                            . 'it is retrieved at posting time.', 'auto-post-woocommerce-products');
    71                     ?>
    72 
    73                 </div>
     72                    ?><hr/><div class="subtitle-apwp" style="text-align: center; padding-bottom: 10px;">
     73                    <?php _e('Manually reset Products to Tweet list', 'auto-post-woocommerce-product');
     74                    ?></div><form method="post" action="admin.php?page=atwc_products_options&tab=woocom_settings" style="text-align: center;">
     75                        <button type="submit" class="<?php echo $theme; ?> shadows-btn" value="" id="reset_pr_tweet" name="reset_pr_tweet"><?php _e('Reset scheduled to Tweet list', 'auto-post-woocommerce-product'); ?></button>
     76                        </form>
     77                    </div>
    7478            </div>
    7579        </div>
     
    111115    <div class="apwp-theme-box-<?php echo $theme; ?>" style="width: 90%;">
    112116        <div class="subtitle-apwp" style="display: inline;"><?php
    113             _e('Select your product categories', 'auto-post-woocommerce-products');
    114             ?></div>
     117    _e('Select your product categories', 'auto-post-woocommerce-products');
     118    ?></div>
    115119        <div class="apwp_tooltip2">
    116120            <span class="apwp_tooltiptext2"><?php
    117                 _e('The categories you select will allow all products within those categories to be auto posted to <em>Twitter</em>.', 'auto-post-woocommerce-products');
    118                 ?></span>
     121        _e('The categories you select will allow all products within those categories to be auto posted to <em>Twitter</em>.', 'auto-post-woocommerce-products');
     122    ?></span>
    119123            <span class = "dashicons dashicons-editor-help help-<?php echo $theme; ?>" ></span>
    120124        </div>   
    121125        <fieldset id="cat_group"><table><tr><?php
    122                     foreach ($all_cats as $value) {
    123                         // in case the "&" was used in category name for the word "and".
    124                         // If not "&amp;"  php will have the hiccups!
    125                         $value = str_replace('&amp;', '&', $value);
    126                         if (isset($opt[$value])) {
    127                             $checked = 1; //$opt[$value];
    128                             $is_checked = true;
    129                         }
    130                         else {
    131                             $value = str_replace('&', '&amp;', $value);
    132                             $checked = 0;
    133                         }
    134                         ?><td><label class="container<?php echo $theme_checkbox; ?>"><?php echo $value; ?>
     126            foreach ($all_cats as $value) {
     127                // in case the "&" was used in category name for the word "and".
     128                // If not "&amp;"  php will have the hiccups!
     129                $value = str_replace('&amp;', '&', $value);
     130                if (isset($opt[$value])) {
     131                    $checked = 1; //$opt[$value];
     132                    $is_checked = true;
     133                }
     134                else {
     135                    $value = str_replace('&', '&amp;', $value);
     136                    $checked = 0;
     137                }
     138        ?><td><label class="container<?php echo $theme_checkbox; ?>"><?php echo $value; ?>
    135139                                <input type="checkbox" id="apwp_cat" name="atwc_products_woo_options_page[<?php echo $value; ?>]" value="1" <?php
    136                                 echo checked($checked, $current, false);
    137                                 ?>>
     140                echo checked($checked, $current, false);
     141        ?>>
    138142                                <span class="checkmark<?php echo $theme_checkbox; ?>"></span>
    139143                            </label></td><?php
    140                         ++$cntr;
    141                         if ($cntr > 3) {
    142                             $cntr = 0;
    143                             ?></tr><tr><?php
     144                               ++$cntr;
     145                               if ($cntr > 3) {
     146                                   $cntr = 0;
     147            ?></tr><tr><?php
    144148                            }
    145149                        }
    146150                        ?></tr></table></fieldset></div><br/><?php
    147         if (!$is_checked) {
    148             $_display_error = '';
    149         }
    150         ?>
     151                        if (!$is_checked) {
     152                            $_display_error = '';
     153                        }
     154                        ?>
    151155    <button type="button" class="<?php echo $theme; ?> shadows-btn" id="all_cat_group" value=""><span class="button-check-all"></span><span style="padding-left: 7px;"><?php
    152             _e('Select all', 'auto-post-woocommerce-products');
    153             ?></span></button>&nbsp;&nbsp;
     156    _e('Select all', 'auto-post-woocommerce-products');
     157                        ?></span></button>&nbsp;&nbsp;
    154158    <button type="button" class="<?php echo $theme; ?> shadows-btn" id="none_cat_group" value=""><span class="button-check-none"></span><span style="padding-left: 7px;"><?php
    155             _e('Select none', 'auto-post-woocommerce-products');
    156             ?></span></button>
     159        _e('Select none', 'auto-post-woocommerce-products');
     160                        ?></span></button>
    157161
    158162    <span id="must_select_cat" class="apwp-message-error" <?php echo $_display_error; ?>><span class="message-error-triangle"></span><span style="padding-left: 7px;"><?php
    159             _e('Please select at least one category.', 'auto-post-woocommerce-products');
    160             ?></span></span>   
    161     <?php
     163        _e('Please select at least one category.', 'auto-post-woocommerce-products');
     164                        ?></span></span>   
     165            <?php
    162166    unset($all_cats);
    163167}
  • auto-post-woocommerce-products/trunk/admin/includes/apwp-check-setup.php

    r2001944 r2002116  
    3030        $this->set_globals($options);
    3131        $this->check_for_error_messages();
    32        
     32
    3333        //Categories updated
    3434        if (isset($_REQUEST['tab'])) {
     
    3838        }
    3939
     40        if (isset($_REQUEST['reset_pr_tweet'])) {
     41            set_products_array();
     42        }
     43
    4044        if ($options->get('apwp_twitter_enable_auto_post') === 'checked') {
    4145            $this->cat = $this->check_category_selection();
    42             $this->tw = $this->check_twitter();           
     46            $this->tw = $this->check_twitter();
    4347
    4448            if (!$this->cat) {
     
    96100            $tab = 'quick-start';
    97101        }
    98        
     102
    99103        if (!in_array('curl', get_loaded_extensions())) {
    100104            $url = 'https://www.cilcreations.com/apwp/knowledgebase/enable-curl-via-the-php-ini-file/';
     
    105109            apwp_get_autopost_error_message($link);
    106110        }
    107        
     111
    108112        //Twitter auto post
    109113        if ($options->get('apwp_twitter_enable_auto_post') === 'checked' && $options->get(SCHEDULE_PAGE) === 'pause_schedule') {
  • auto-post-woocommerce-products/trunk/admin/includes/apwp-debug.php

    r2001944 r2002116  
    1515    global  $apwp_current_schedule ;
    1616    $options = new Apwp_Options();
    17     $chk_setup = new Apwp_Check_Setup();
    1817    $cron = new Apwp_Cron_Functions();
    1918    $err_log = apwp_get_log_file( MY_PLUGIN_PATH . 'error_log' );
  • auto-post-woocommerce-products/trunk/admin/includes/class-apwp-short-links.php

    r2001944 r2002116  
    1212register_deactivation_hook( __FILE__, 'deactivate_bitly_update_data' );
    1313register_activation_hook( __FILE__, 'activate_bitly_update_data' );
    14 add_action( 'apwc_update_bitly_data', 'get_bitly_clicks_table' );
     14add_action( 'apwc_update_bitly_data', 'Short_Links->get_bitly_clicks_table' );
    1515class Short_Links
    1616{
    1717    /**
    18      *Bitly access token
     18     * Bitly access token
    1919     * @since 2.1.2.0
    2020     * @var type string
    2121     */
    22     public  $bit_token ;
     22    protected  $bit_token = '' ;
    2323    public function __construct()
    2424    {
    25         $options = new Apwp_Options();
    26         $twitter = $options->get( 'atwc_products_twitter_options_page' );
    27         $this->bit_token = $options->get( $twitter['bitly_code'] );
    28         if ( $this->bit_token === false || $this->bit_token === '' ) {
    29             return;
    30         }
     25        $option = get_option( 'atwc_products_twitter_options_page' );
     26        $this->bit_token = $option['bitly_code'];
     27       
     28        if ( !$this->bit_token || $this->bit_token === '' ) {
     29            add_to_debug( 'BITLY token not found.' . ' - ' . __FUNCTION__ . ':' . __LINE__, 'auto-post-woocommerce-products' );
     30            return;
     31        }
     32   
    3133    }
    3234   
     
    3941     *
    4042     */
    41     public function apwp_get_my_link( $_id, $url )
    42     {
    43         $options_meta = new APWP_Meta_Options();
     43    public function apwp_get_my_link( $_id, $url = null )
     44    {
     45        $options_meta = new APWP_Meta_Options();
     46        $link = '';
    4447       
    4548        if ( check_local_host() ) {
     
    5457            if ( $options_meta->get( $_id, '_stats_bit_link_apwp', true ) !== '' || $options_meta->get( $_id, '_stats_bit_link_apwp', true ) !== false ) {
    5558                $link = $options_meta->get( $_id, '_stats_bit_link_apwp', true );
    56             } else {
     59            } elseif ( $url !== null ) {
    5760                $link = $this->bitly_get_short_url( $url );
    5861                $options_meta->set( $_id, '_stats_bit_link_apwp', $link );
     
    7477        $ids = get_transient( 'apwp_prod_list_no_var' );
    7578        $data = [];
    76         foreach ( $ids as $key => $myid ) {
     79        if ( get_transient( 'apwp_short_bit_links' ) ) {
     80            $data = get_transient( 'apwp_short_bit_links' );
     81        }
     82        foreach ( $ids as $myid ) {
    7783            $url = get_permalink( $myid );
    7884           
    79             if ( $options_meta->get( $myid, '_stats_bit_link_apwp', true ) !== '' || $options_meta->get( $myid, '_stats_bit_link_apwp', true ) !== false ) {
     85            if ( $options_meta->get( $myid, '_stats_bit_link_apwp', true ) !== '' && $options_meta->get( $myid, '_stats_bit_link_apwp', true ) !== false ) {
    8086                $data[$myid] = $options_meta->get( $myid, '_stats_bit_link_apwp', true );
    8187            } else {
     
    106112        }
    107113       
    108        
    109         if ( !$this->bit_token || $this->bit_token === '' ) {
    110             add_to_debug( 'BITLY token not found.' . ' - ' . __FUNCTION__, 'auto-post-woocommerce-products' );
    111             return $url;
    112         }
    113        
    114114        $s_url = $this->bitly_url_shorten( $url, $this->bit_token );
    115115        $sh_url = trim( $s_url );
    116116       
    117117        if ( $s_url === 'empty' ) {
    118             add_to_debug( 'BITLY DID NOT RETURN A PROPER RESPONSE.' . ' - ' . __FUNCTION__, 'auto-post-woocommerce-products' );
     118            add_to_debug( 'BITLY DID NOT RETURN A PROPER RESPONSE.' . ' - ' . __FUNCTION__ . ':' . __LINE__, 'auto-post-woocommerce-products' );
    119119            $sh_url = '';
    120120            //if bitly error then use the full url
     
    123123       
    124124        if ( $s_url === 'no_token' ) {
    125             add_to_debug( 'Missing Bitly token!' . ' - ' . __FUNCTION__, 'auto-post-woocommerce-products' );
     125            add_to_debug( 'Missing Bitly token!' . ' - ' . __FUNCTION__ . ':' . __LINE__, 'auto-post-woocommerce-products' );
    126126            $sh_url = '';
    127127        }
     
    145145        }
    146146       
    147        
    148         if ( !$this->bit_token || $this->bit_token === '' ) {
    149             add_to_debug( 'BITLY token not found.' . ' - ' . __FUNCTION__, 'auto-post-woocommerce-products' );
    150             return 'no_token';
    151         }
    152        
    153147        $result = [];
    154148        $bitly = new Bitly2( null, null, $this->bit_token );
     
    156150        $result = $bitly->shorten( $long_url );
    157151        if ( isset( $result['data'] ) ) {
    158             add_to_debug( 'BITLY Message: ' . $result['data'] . ' - ' . __FUNCTION__, 'auto-post-woocommerce-products' );
    159         }
    160         if ( $result === false || empty($result) ) {
     152            add_to_debug( 'BITLY Message: ' . $result['data'] . ' - ' . __FUNCTION__ . ':' . __LINE__, 'auto-post-woocommerce-products' );
     153        }
     154       
     155        if ( isset( $result ) ) {
     156            return $result['url'];
     157        } else {
    161158            return 'empty';
    162159        }
    163         return $result['link'];
     160   
    164161    }
    165162   
     
    265262    {
    266263        $options_meta = new APWP_Meta_Options();
    267         add_to_debug( 'UPDATE REFERRERS START' . ' - ' . __FUNCTION__ . '( )', 'APWCP CRON' );
    268         if ( !$this->bit_token || $this->bit_token === '' ) {
    269             return;
    270         }
    271264        $timezone = date( 'T' );
    272265        if ( $timezone === '' ) {
     
    323316        );
    324317        $options_meta->set( $id, '_stats_referrers_clicks_apwp', $results );
    325         add_to_debug( 'UPDATED REFERRERS' . ' - ' . __FUNCTION__ . '( )', 'APWCP CRON' );
    326318    }
    327319   
     
    337329        $options_meta = new APWP_Meta_Options();
    338330        if ( $options_meta->get( $id, '_stats_data_enabled_apwp', true ) === 'no' ) {
    339             return;
    340         }
    341         if ( !$this->bit_token || $this->bit_token === '' ) {
    342331            return;
    343332        }
     
    463452   
    464453    }
     454   
     455    /**
     456     * Pull stats data from Bitly - cron function
     457     * @since 1.0.2
     458     * @return type none
     459     *
     460     */
     461    public function get_bitly_clicks_table()
     462    {
     463        if ( check_local_host() ) {
     464            return;
     465        }
     466        $options_meta = new APWP_Meta_Options();
     467        $options = new Apwp_Options();
     468        $ids = get_transient( 'apwp_prod_list_no_var' );
     469        $counter = 0;
     470        foreach ( $ids as $value ) {
     471            $theid = $value;
     472            $url = get_permalink( $theid );
     473            if ( $options_meta->get( $theid, '_stats_data_enabled_apwp', true ) === 'no' ) {
     474                continue;
     475            }
     476            $bit_link = $options_meta->get( $theid, '_stats_bit_link_apwp', true );
     477           
     478            if ( $bit_link === false || $bit_link === '' ) {
     479                $bit_link = $this->apwp_get_my_link( $theid, $url );
     480                $counter++;
     481                $options_meta->set( $theid, '_stats_bit_link_apwp', $bit_link );
     482                if ( $counter > 98 ) {
     483                    //Bitly caps new short links to 100/minute and 1,000/hour
     484                    break;
     485                }
     486            }
     487           
     488            $this->bitly_get_referrers( $bit_link, $theid );
     489        }
     490        $options->set( 'atwc_last_bitly_refresh', time() + TIME_OFFSET );
     491    }
    465492
    466493}
    467 /**
    468  * Pull stats data from Bitly - cron function
    469  * @since 1.0.2
    470  * @return type none
    471  *
    472  */
    473 function get_bitly_clicks_table()
    474 {
    475     if ( check_local_host() ) {
    476         return;
    477     }
    478     $options_meta = new APWP_Meta_Options();
    479     $options = new Apwp_Options();
    480     $link_functions = new Short_Links();
    481     $ids = get_transient( 'apwp_prod_list_no_var' );
    482     $counter = 0;
    483     foreach ( $ids as $value ) {
    484         $theid = $value;
    485         $url = get_permalink( $theid );
    486         if ( $options_meta->get( $theid, '_stats_data_enabled_apwp', true ) === 'no' ) {
    487             continue;
    488         }
    489         add_to_debug( 'get_bitly_clicks_table - FINISH FOREACH' );
    490         $bit_link = $options_meta->get( $theid, '_stats_bit_link_apwp', true );
    491        
    492         if ( $bit_link === false || $bit_link === '' ) {
    493             $bit_link = $link_functions->apwp_get_my_link( $theid, $url );
    494             $counter++;
    495             $options_meta->set( $theid, '_stats_bit_link_apwp', $bit_link );
    496             if ( $counter > 98 ) {
    497                 //Bitly caps new short links to 100/minute and 1,000/hour
    498                 break;
    499             }
    500         }
    501        
    502         $link_functions->bitly_get_referrers( $bit_link, $theid );
    503     }
    504     $options->set( 'atwc_last_bitly_refresh', time() + TIME_OFFSET );
    505     wp_reset_postdata();
    506 }
  • auto-post-woocommerce-products/trunk/admin/includes/display-quick-start-tab.php

    r2001944 r2002116  
    5757            <br/>
    5858            <ol class="quick-start">
    59                 <li class="quick-start"><?php _e('Added Bulk Actions to the Product list tab. The ability to edit products with bulk edit is currently being added to the plugin.', 'auto-post-woocommerce-products'); ?></li>
    60                 <li class="quick-start"><?php _e('Fixed the issues with the auto poster; showing incorrect number of products, re-posting the same product right after it was posted, reseting the products to post list when it was not time. ', 'auto-post-woocommerce-products'); ?></li>
    61                 <li class="quick-start"><?php _e('Fixed issue when changing the auto post schedule, the screen would refresh over and over.', 'auto-post-woocommerce-products'); ?></li>
     59                <li class="quick-start"><?php _e('Added button to manually reset the products to Tweet list.', 'auto-post-woocommerce-products'); ?></li>
     60                <li class="quick-start"><?php _e('Fixed a few other issues including retrieving Bitly shortlinks which had stopped working.', 'auto-post-woocommerce-products'); ?></li>
     61               
    6262            </ol><br/><center><?php apwp_display_message(); ?></center><br/>
    6363        </div><br/><br/>
  • auto-post-woocommerce-products/trunk/admin/src/Bitly/bitly-new.php

    r2001944 r2002116  
    285285        $results = $this->call('v3/shorten', $params);
    286286        $results['new_hash'] = ($results['new_hash'] == 1) ? true : false;
    287         debug_to_console($results);
    288287        return $results;
    289288    }
     
    16731672            $result = json_decode($result, true);
    16741673            if ($result['status_code'] !== 200) {
    1675                 add_to_debug('Error code: ' . $result['status_code'], 'BITLY API JSON ERROR');
     1674                add_to_debug('Error code: ' . (int) $result['status_code'] . ' - ' . $result['status_txt'] . ' - ' . __FUNCTION__ . ':' . __LINE__, 'BITLY API JSON ERROR');
    16761675                throw new BitlyAPIError($result['status_txt'], (int) $result['status_code']);
    16771676            }
  • auto-post-woocommerce-products/trunk/auto-post-woocommerce-products.php

    r2001944 r2002116  
    1111 * Description: APWCP is a powerful tool to assist you in managing your WooCommerce inventory and advertising your products on social media.
    1212 * Tested up to: 5.0.2
    13  * Version: 2.1.2.3
     13 * Version: 2.1.2.4
    1414 * Author: Carl Lockett III, CIL Creations
    1515 * Author URI: http://www.cilcreations.com/apwp
     
    2929    require plugin_dir_path(__FILE__)
    3030            . 'includes/class-auto-post-woocommerce-products.php';
    31     define('Auto_Post_Woocommerce_Products_VERSION', '2.1.2.3');
     31    define('Auto_Post_Woocommerce_Products_VERSION', '2.1.2.4');
    3232    register_activation_hook(__FILE__, 'activate_auto_post_woocommerce_products');
    3333    register_deactivation_hook(__FILE__, 'deactivate_auto_post_woocommerce_products');
  • auto-post-woocommerce-products/trunk/languages/auto-post-woocommerce-products-de_DE.po

    r2001944 r2002116  
    66msgid ""
    77msgstr ""
    8 "Project-Id-Version: APWCP 2.1.2.3\n"
     8"Project-Id-Version: APWCP 2.1.2.4\n"
    99"Report-Msgid-Bugs-To: [email protected]\n"
    10 "POT-Creation-Date: 2018-12-19 16:09-0600\n"
    11 "PO-Revision-Date: 2018-12-19 16:25-0600\n"
     10"POT-Creation-Date: 2018-12-27 00:58-0600\n"
     11"PO-Revision-Date: 2018-12-27 00:58-0600\n"
    1212"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1313"Language-Team: LANGUAGE <[email protected]>\n"
     
    3232msgstr "Hilfe"
    3333
    34 #: auto-post-woocommerce-products.php:84 admin/apwp-functions-admin.php:1216
     34#: auto-post-woocommerce-products.php:84 admin/apwp-functions-admin.php:1218
    3535msgid "Auto Post WooCommerce Products"
    3636msgstr "Auto Post WooCommerce Produkte"
     
    7878
    7979#: admin/apwp-fs-functions.php:42 admin/apwp-fs-functions.php:174
    80 #: admin/apwp-schedule-tab.php:363 admin/apwp-settings-tab.php:60
     80#: admin/apwp-schedule-tab.php:374 admin/apwp-settings-tab.php:60
    8181#: admin/apwp-settings-tab.php:137 admin/apwp-settings-tab.php:232
    8282#: admin/apwp-settings-tab.php:283 admin/apwp-settings-tab.php:356
     
    226226msgstr "herunterladbar"
    227227
    228 #: admin/apwp-functions-admin.php:865 admin/apwp-functions-admin.php:866
    229 #: admin/auto-post-woocommerce-products-tabs.php:301
     228#: admin/apwp-functions-admin.php:867 admin/apwp-functions-admin.php:868
     229#: admin/auto-post-woocommerce-products-tabs.php:304
    230230#: admin/includes/apwp-add-social-icons.php:48
    231231msgid "ON SALE!"
    232232msgstr "IM ANGEBOT!"
    233233
    234 #: admin/apwp-functions-admin.php:942
     234#: admin/apwp-functions-admin.php:944
    235235#: admin/auto-post-woocommerce-products-help.php:126
    236236msgid "STARTER"
    237237msgstr "ANLASSER"
    238238
    239 #: admin/apwp-functions-admin.php:945
     239#: admin/apwp-functions-admin.php:947
    240240#: admin/auto-post-woocommerce-products-help.php:134
    241241msgid "PROFESSIONAL"
    242242msgstr "PROFESSIONEL"
    243243
    244 #: admin/apwp-functions-admin.php:948
     244#: admin/apwp-functions-admin.php:950
    245245#: admin/auto-post-woocommerce-products-help.php:130
    246246msgid "BUSINESS"
    247247msgstr "GESCHÄFT"
    248248
    249 #: admin/apwp-functions-admin.php:951
     249#: admin/apwp-functions-admin.php:953
    250250msgid "FREE"
    251251msgstr "FREI"
    252252
    253 #: admin/apwp-functions-admin.php:1203
     253#: admin/apwp-functions-admin.php:1205
    254254msgid ""
    255255"While using a LOCALHOST server, all posts will be simulated and all calls to "
     
    259259"alle Aufrufe von Bitly.com ausgesetzt."
    260260
    261 #: admin/apwp-functions-admin.php:1221
     261#: admin/apwp-functions-admin.php:1223
    262262msgid "WooCommerce product management and product posting to social media"
    263263msgstr "WooCommerce-Produktmanagement und Produktveröffentlichung in sozialen Medien"
    264264
    265 #: admin/apwp-functions-admin.php:1223
     265#: admin/apwp-functions-admin.php:1225
    266266msgid "version"
    267267msgstr "Ausführung"
    268268
    269 #: admin/apwp-functions-admin.php:1227
     269#: admin/apwp-functions-admin.php:1229
    270270msgid "by"
    271271msgstr "durch"
    272272
    273 #: admin/apwp-functions-admin.php:1239
     273#: admin/apwp-functions-admin.php:1241
    274274#, php-format
    275275msgid ""
     
    280280"wählen Sie ein Hashtag</a>."
    281281
    282 #: admin/apwp-functions-admin.php:1246
     282#: admin/apwp-functions-admin.php:1248
    283283#, php-format
    284284msgid ""
     
    289289"Hashtags effektiv verwenden, ohne nervig zu sein</a>"
    290290
    291 #: admin/apwp-functions-admin.php:1253
     291#: admin/apwp-functions-admin.php:1255
    292292msgid ""
    293293"The hashtag (#) has become one of the most valuable assets in any modern "
     
    297297"Marketingkampagne geworden."
    298298
    299 #: admin/apwp-functions-admin.php:1254
     299#: admin/apwp-functions-admin.php:1256
    300300msgid ""
    301301"The brands that create the most effective hashtags and employ them well, "
     
    305305"profitieren von Twitter."
    306306
    307 #: admin/apwp-functions-admin.php:1255
     307#: admin/apwp-functions-admin.php:1257
    308308msgid ""
    309309"Those who haven&apos;t invested the time and thought carefully about their "
     
    314314"vorhersehbare Ergebnisse."
    315315
    316 #: admin/apwp-functions-admin.php:1256
     316#: admin/apwp-functions-admin.php:1258
    317317msgid ""
    318318". . .good hashtags should be memorable, so that your customers will easily "
     
    322322"zurückrufen können."
    323323
    324 #: admin/apwp-functions-admin.php:1257
     324#: admin/apwp-functions-admin.php:1259
    325325msgid ""
    326326"In practice, hashtags are used to categorize social media content into "
     
    330330"navigierbare Listen zu kategorisieren."
    331331
    332 #: admin/apwp-functions-admin.php:1258
     332#: admin/apwp-functions-admin.php:1260
    333333msgid ""
    334334"By including the #[INSERT KEYWORD] in a tweet, it then becomes visible "
     
    338338"dann inline mit anderen Posts angezeigt, die denselben Hashtag verwenden."
    339339
    340 #: admin/apwp-functions-admin.php:1259
     340#: admin/apwp-functions-admin.php:1261
    341341msgid ""
    342342"Sometimes, the best way to use hashtags is to find ones that already exist."
     
    345345"die bereits existieren."
    346346
    347 #: admin/apwp-functions-admin.php:1308
     347#: admin/apwp-functions-admin.php:1310
    348348msgid "Thank you for using our plugin!"
    349349msgstr "Danke für die Verwendung unseres Plugins!"
    350350
    351 #: admin/apwp-functions-admin.php:1311
     351#: admin/apwp-functions-admin.php:1313
    352352msgid "You are currently utilizing a FREE Trial period."
    353353msgstr "Sie nutzen derzeit eine KOSTENLOSE Probezeit."
    354354
    355 #: admin/apwp-functions-admin.php:1314
     355#: admin/apwp-functions-admin.php:1316
    356356#, php-format
    357357msgid ""
     
    364364"/a> bewertung!"
    365365
    366 #: admin/apwp-functions-admin.php:1328
     366#: admin/apwp-functions-admin.php:1330
    367367#, php-format
    368368msgid ""
     
    374374"es uns wissen!</a>"
    375375
    376 #: admin/apwp-functions-admin.php:1342
     376#: admin/apwp-functions-admin.php:1344
    377377#, php-format
    378378msgid ""
     
    383383"a href=\"%s\" title=\"Kontoseite\" target=\"_blank\">Kontoseite</a>."
    384384
    385 #: admin/apwp-functions-admin.php:1361
     385#: admin/apwp-functions-admin.php:1363
    386386#, php-format
    387387msgid ""
     
    393393"Testversion</a>."
    394394
    395 #: admin/apwp-functions-admin.php:1380
     395#: admin/apwp-functions-admin.php:1382
    396396#, php-format
    397397msgid ""
     
    402402"title=\"Pläne ansehen\" target=\"_blank\">Alle Pläne anzeigen</a>."
    403403
    404 #: admin/apwp-functions-admin.php:1400
     404#: admin/apwp-functions-admin.php:1402
    405405msgid "Success!"
    406406msgstr "Erfolg!"
    407407
    408 #: admin/apwp-functions-admin.php:1411
     408#: admin/apwp-functions-admin.php:1413
    409409msgid "Auto Post INFORMATION:"
    410410msgstr "Automatische Beitragsinformationen:"
    411411
    412 #: admin/apwp-functions-admin.php:1422
     412#: admin/apwp-functions-admin.php:1424
    413413msgid "Auto Post WARNING:"
    414414msgstr "Auto Post WARNUNG:"
    415415
    416 #: admin/apwp-functions-admin.php:1433
     416#: admin/apwp-functions-admin.php:1435
    417417msgid "WOOCOMMERCE ERROR:"
    418418msgstr "WOOCOMMERCE ERROR:"
    419419
    420 #: admin/apwp-functions-admin.php:1444
     420#: admin/apwp-functions-admin.php:1446
    421421msgid "APWCP ERROR:"
    422422msgstr "APWCP-FEHLER:"
    423423
    424 #: admin/apwp-functions-admin.php:1455
     424#: admin/apwp-functions-admin.php:1457
    425425msgid "Security ERROR:"
    426426msgstr "Sicherheitsfehler"
    427427
    428 #: admin/apwp-functions-admin.php:1465
     428#: admin/apwp-functions-admin.php:1467
    429429#: admin/includes/pro/apwp-quick-edit.php:34
    430430msgid "Product Edit ERROR:"
    431431msgstr "Produkt bearbeiten ERROR:"
    432432
    433 #: admin/apwp-functions-admin.php:1590
     433#: admin/apwp-functions-admin.php:1592
    434434msgid "Pause schedule"
    435435msgstr "Zeitplan anhalten"
    436436
    437 #: admin/apwp-functions-admin.php:1594
     437#: admin/apwp-functions-admin.php:1596
    438438msgid "Schedule is disabled"
    439439msgstr "Zeitplan ist deaktiviert"
    440440
    441 #: admin/apwp-functions-admin.php:1598
     441#: admin/apwp-functions-admin.php:1600
    442442#: admin/includes/class-apwp-cron-functions.php:116
    443443msgid "Every 24 hours"
    444444msgstr "Alle 24 Stunden"
    445445
    446 #: admin/apwp-functions-admin.php:1602
     446#: admin/apwp-functions-admin.php:1604
    447447#: admin/includes/class-apwp-cron-functions.php:121
    448448msgid "Every 12 hours"
    449449msgstr "Alle 12 Stunden"
    450450
    451 #: admin/apwp-functions-admin.php:1606
     451#: admin/apwp-functions-admin.php:1608
    452452#: admin/includes/class-apwp-cron-functions.php:126
    453453msgid "Every 8 hours"
    454454msgstr "Alle 8 Stunden"
    455455
    456 #: admin/apwp-functions-admin.php:1610
     456#: admin/apwp-functions-admin.php:1612
    457457#: admin/includes/class-apwp-cron-functions.php:131
    458458msgid "Every 7 hours"
    459459msgstr "Alle 7 Stunden"
    460460
    461 #: admin/apwp-functions-admin.php:1614
     461#: admin/apwp-functions-admin.php:1616
    462462#: admin/includes/class-apwp-cron-functions.php:144
    463463msgid "Every 6 hours"
    464464msgstr "Alle 6 Stunden"
    465465
    466 #: admin/apwp-functions-admin.php:1618
     466#: admin/apwp-functions-admin.php:1620
    467467#: admin/includes/class-apwp-cron-functions.php:154
    468468msgid "Every 5 hours"
    469469msgstr "Alle 5 Stunden"
    470470
    471 #: admin/apwp-functions-admin.php:1622
     471#: admin/apwp-functions-admin.php:1624
    472472#: admin/includes/class-apwp-cron-functions.php:149
    473473msgid "Every 4 hours"
    474474msgstr "Alle 4 Stunden"
    475475
    476 #: admin/apwp-functions-admin.php:1626
     476#: admin/apwp-functions-admin.php:1628
    477477#: admin/includes/class-apwp-cron-functions.php:163
    478478msgid "Every 3 hours"
    479479msgstr "Alle 3 Stunden"
    480480
    481 #: admin/apwp-functions-admin.php:1630
     481#: admin/apwp-functions-admin.php:1632
    482482#: admin/includes/class-apwp-cron-functions.php:168
    483483msgid "Every 2 hours"
    484484msgstr "Alle 2 Stunden"
    485485
    486 #: admin/apwp-functions-admin.php:1634
     486#: admin/apwp-functions-admin.php:1636
    487487#: admin/includes/class-apwp-cron-functions.php:177
    488488msgid "Every hour"
    489489msgstr "Jede Stunde"
    490490
    491 #: admin/apwp-functions-admin.php:1638
     491#: admin/apwp-functions-admin.php:1640
    492492#: admin/includes/class-apwp-cron-functions.php:182
    493493msgid "Every 30 minutes"
    494494msgstr "Alle 30 Minuten"
    495495
    496 #: admin/apwp-functions-admin.php:1667
     496#: admin/apwp-functions-admin.php:1669
    497497msgid "End current Sale"
    498498msgstr "Endgültiger Verkauf"
    499499
    500 #: admin/apwp-functions-admin.php:1668
     500#: admin/apwp-functions-admin.php:1670
    501501msgid "Cancel"
    502502msgstr "Stornieren"
    503503
    504 #: admin/apwp-functions-admin.php:1669
     504#: admin/apwp-functions-admin.php:1671
    505505msgid "Delete all products"
    506506msgstr "Löschen Sie alle Produkte"
    507507
    508 #: admin/apwp-functions-admin.php:1670
     508#: admin/apwp-functions-admin.php:1672
    509509msgid "Are you sure you want to permanently delete"
    510510msgstr "Sind Sie sicher, dass Sie dauerhaft löschen möchten"
    511511
    512 #: admin/apwp-functions-admin.php:1671
     512#: admin/apwp-functions-admin.php:1673
    513513msgid ""
    514514"This procedure cannot be reversed and if this is a variable product then all "
     
    518518"variables Produkt handelt, werden auch alle Variationen gelöscht!"
    519519
    520 #: admin/apwp-functions-admin.php:1672
     520#: admin/apwp-functions-admin.php:1674
    521521msgid "Are you sure you want to move this item to the Trash?"
    522522msgstr "Möchtest du dieses Objekt wirklich in den Papierkorb verschieben?"
    523523
    524 #: admin/apwp-functions-admin.php:1673
     524#: admin/apwp-functions-admin.php:1675
    525525#: admin/includes/apwp-list-table-functions.php:1050
    526526msgid "Auto sharing enabled"
    527527msgstr "Automatische Freigabe aktiviert"
    528528
    529 #: admin/apwp-functions-admin.php:1674
     529#: admin/apwp-functions-admin.php:1676
    530530#: admin/includes/apwp-list-table-functions.php:1051
    531531msgid "Not auto shared"
    532532msgstr "Nicht automatisch freigegeben"
    533533
    534 #: admin/apwp-functions-admin.php:1675
     534#: admin/apwp-functions-admin.php:1677
    535535#: admin/includes/apwp-product-list-class.php:375
    536536msgid "Product is featured"
    537537msgstr "Produkt ist vorgestellten"
    538538
    539 #: admin/apwp-functions-admin.php:1676
     539#: admin/apwp-functions-admin.php:1678
    540540#: admin/includes/apwp-product-list-class.php:376
    541541msgid "Product is not featured"
    542542msgstr "Produkt ist nicht gekennzeichnet"
    543543
    544 #: admin/apwp-functions-admin.php:1677
     544#: admin/apwp-functions-admin.php:1679
    545545#: admin/includes/apwp-list-table-functions.php:1112
    546546msgid "Add product to click data statistics"
    547547msgstr "Fügen Sie ein Produkt hinzu, um auf Datenstatistiken zu klicken"
    548548
    549 #: admin/apwp-functions-admin.php:1678
     549#: admin/apwp-functions-admin.php:1680
    550550#: admin/includes/apwp-list-table-functions.php:1113
    551551msgid "Remove product from click data statistics"
    552552msgstr "Entfernen Sie das Produkt aus der Klickdatenstatistik"
    553553
    554 #: admin/apwp-functions-admin.php:1679
     554#: admin/apwp-functions-admin.php:1681
    555555msgid ""
    556556"You do not have permisson to perform this action. Please ask your Admin."
     
    559559"Ihren Admin."
    560560
    561 #: admin/apwp-functions-admin.php:1680
     561#: admin/apwp-functions-admin.php:1682
    562562msgid "WordPress security check failed. Please try again."
    563563msgstr "Die WordPress-Sicherheitsüberprüfung ist fehlgeschlagen. Bitte versuche es erneut."
    564564
    565 #: admin/apwp-functions-admin.php:1681
     565#: admin/apwp-functions-admin.php:1683
    566566msgid "An error has occured. Please try again."
    567567msgstr "Ein Fehler ist aufgetreten. Bitte versuche es erneut."
    568568
    569 #: admin/apwp-schedule-tab.php:30
     569#: admin/apwp-schedule-tab.php:32
    570570msgid "Schedule your Twitter auto posts"
    571571msgstr "Planen Sie Ihre Twitter-Auto-Posts"
    572572
    573 #: admin/apwp-schedule-tab.php:64
     573#: admin/apwp-schedule-tab.php:76
    574574msgid "Waiting on CRON scheduler. Information will be updated soon."
    575575msgstr "Warten auf den CRON-Scheduler. Informationen werden in Kürze aktualisiert."
    576576
    577 #: admin/apwp-schedule-tab.php:73
     577#: admin/apwp-schedule-tab.php:85
    578578msgid ""
    579579"The last auto post failed. Please see the APWP debug log on the Status tab."
     
    582582"Protokoll auf der Registerkarte Status."
    583583
    584 #: admin/apwp-schedule-tab.php:99
     584#: admin/apwp-schedule-tab.php:110
    585585msgid "Unknown - please set a new schedule."
    586586msgstr "Unbekannt - bitte legen Sie einen neuen Zeitplan fest."
    587587
    588 #: admin/apwp-schedule-tab.php:103
     588#: admin/apwp-schedule-tab.php:114
    589589msgid "Last auto Tweet information"
    590590msgstr "Letzte Auto-Tweet-Informationen"
    591591
    592 #: admin/apwp-schedule-tab.php:110
     592#: admin/apwp-schedule-tab.php:121
    593593msgid "While using a LOCALHOST server, all posts will be <em>simulated</em>."
    594594msgstr "Bei Verwendung eines LOCALHOST-Servers werden alle Posts <em>simuliert</em>."
    595595
    596 #: admin/apwp-schedule-tab.php:121
     596#: admin/apwp-schedule-tab.php:132
    597597msgid "Posting schedule:"
    598598msgstr "Buchungsplan:"
    599599
    600 #: admin/apwp-schedule-tab.php:130
     600#: admin/apwp-schedule-tab.php:141
    601601msgid "Next post:"
    602602msgstr "Nächster Beitrag:"
    603603
    604 #: admin/apwp-schedule-tab.php:138
     604#: admin/apwp-schedule-tab.php:149
    605605msgid "Last post:"
    606606msgstr "Letzter Beitrag:"
    607607
    608 #: admin/apwp-schedule-tab.php:145
     608#: admin/apwp-schedule-tab.php:156
    609609msgid "Product ID#:"
    610610msgstr "Produkt ID#:"
    611611
    612 #: admin/apwp-schedule-tab.php:151
    613 #: admin/includes/apwp-list-table-functions.php:1746
     612#: admin/apwp-schedule-tab.php:162
     613#: admin/includes/apwp-list-table-functions.php:1782
    614614#: admin/includes/pro/apwp-quick-edit.php:602
    615615msgid "Title"
    616616msgstr "Titel"
    617617
    618 #: admin/apwp-schedule-tab.php:157
     618#: admin/apwp-schedule-tab.php:168
    619619msgid "Post content:"
    620620msgstr "Inhalt posten:"
    621621
    622 #: admin/apwp-schedule-tab.php:166
     622#: admin/apwp-schedule-tab.php:177
    623623msgid "Hashtags used"
    624624msgstr "Hashtags benutzt"
    625625
    626 #: admin/apwp-schedule-tab.php:175
    627 #: admin/auto-post-woocommerce-products-tabs.php:363
     626#: admin/apwp-schedule-tab.php:186
     627#: admin/auto-post-woocommerce-products-tabs.php:366
    628628msgid "URL"
    629629msgstr "URL"
    630630
    631 #: admin/apwp-schedule-tab.php:186
     631#: admin/apwp-schedule-tab.php:197
    632632#: admin/includes/pro/class-apwp-stats-table.php:360
    633633msgid "Share to social media"
    634634msgstr "Teilen Sie mit sozialen Medien"
    635635
    636 #: admin/apwp-schedule-tab.php:209
     636#: admin/apwp-schedule-tab.php:220
    637637msgid "Set your schedule"
    638638msgstr "Legen Sie Ihren Zeitplan fest"
    639639
    640 #: admin/apwp-schedule-tab.php:212
     640#: admin/apwp-schedule-tab.php:223
    641641msgid "Schedule when your products will be posted to Twitter."
    642642msgstr "Planen Sie ein, wann Ihre Produkte auf Twitter veröffentlicht werden."
    643643
    644 #: admin/apwp-schedule-tab.php:284
     644#: admin/apwp-schedule-tab.php:295
    645645msgid "How often would you like to auto post a product?"
    646646msgstr "Wie oft möchten Sie ein Produkt automatisch posten?"
    647647
    648 #: admin/apwp-schedule-tab.php:288
     648#: admin/apwp-schedule-tab.php:299
    649649msgid ""
    650650"Select how often you would like to automatically post a product to "
     
    654654"buchen und speichern möchten."
    655655
    656 #: admin/apwp-schedule-tab.php:350 admin/includes/pro/apwp-quick-edit.php:102
     656#: admin/apwp-schedule-tab.php:361 admin/includes/pro/apwp-quick-edit.php:102
    657657msgid "Save changes"
    658658msgstr "Änderungen speichern"
    659659
    660 #: admin/apwp-schedule-tab.php:354
     660#: admin/apwp-schedule-tab.php:365
    661661msgid "Schedule saved. Posting Tweet. . ."
    662662msgstr "Zeitplan gespeichert. Posting Tweet. . ."
    663663
    664 #: admin/apwp-schedule-tab.php:357
    665 #| msgid "Disabled CRON schedule. . ."
     664#: admin/apwp-schedule-tab.php:368
    666665msgid "Disabling CRON schedule. . ."
    667666msgstr "CRON-Zeitplan deaktivieren . . ."
    668667
    669 #: admin/apwp-schedule-tab.php:360
     668#: admin/apwp-schedule-tab.php:371
    670669msgid "Please select a schedule other than the one already set."
    671670msgstr "Bitte wählen Sie einen anderen als den bereits festgelegten Zeitplan."
    672671
    673 #: admin/apwp-schedule-tab.php:371
     672#: admin/apwp-schedule-tab.php:382
    674673#, php-format
    675674msgid ""
     
    680679">CIL Creations</a>"
    681680
    682 #: admin/apwp-schedule-tab.php:379
     681#: admin/apwp-schedule-tab.php:390
    683682msgid ""
    684683"If you have fewer than 50 products, it is recommended to set your posting "
     
    10351034msgstr "Sehen Sie sich unsere <a href=\"%s\" target=\"_blank\">Datenschutzrichtlinie</a> an."
    10361035
    1037 #: admin/apwp-woocommerce-tab.php:25
     1036#: admin/apwp-woocommerce-tab.php:26
    10381037msgid "WooCommerce product categories"
    10391038msgstr "WooCommerce Produktkategorien"
    10401039
    1041 #: admin/apwp-woocommerce-tab.php:45
     1040#: admin/apwp-woocommerce-tab.php:44
    10421041msgid "Current Auto Posting Data"
    10431042msgstr "Aktuelle automatische Buchungsdaten"
    10441043
    1045 #: admin/apwp-woocommerce-tab.php:52
     1044#: admin/apwp-woocommerce-tab.php:51
    10461045msgid "Product to Tweet"
    10471046msgid_plural "Products to Tweet"
     
    10491048msgstr[1] "Produkte zum Tweet"
    10501049
    1051 #: admin/apwp-woocommerce-tab.php:58
     1050#: admin/apwp-woocommerce-tab.php:57
    10521051#: admin/includes/apwp-dashboard-widget.php:159
    10531052msgid "Scheduled to Tweet"
    10541053msgstr "Geplant zum Tweet"
    10551054
    1056 #: admin/apwp-woocommerce-tab.php:66
     1055#: admin/apwp-woocommerce-tab.php:65
    10571056msgid ""
    10581057"These figures are automatically updated when you make any changes to a "
     
    10641063"Inventar hinzufügen oder löschen."
    10651064
    1066 #: admin/apwp-woocommerce-tab.php:69
     1065#: admin/apwp-woocommerce-tab.php:68
    10671066msgid ""
    10681067"<b>NOTE:</b> Any changes made to a product listing are reflected when the "
     
    10751074"gespeichert, sie werden zum Buchungszeitpunkt abgerufen."
    10761075
    1077 #: admin/apwp-woocommerce-tab.php:91
     1076#: admin/apwp-woocommerce-tab.php:73
     1077msgid "Manually reset Products to Tweet list"
     1078msgstr "Produkte manuell auf Tweet-Liste zurücksetzen"
     1079
     1080#: admin/apwp-woocommerce-tab.php:93
    10781081msgid "Select which categories to use when auto posting products to Twitter."
    10791082msgstr "Wählen Sie aus welche Kategorien beim automatischen Posten von Produkten auf Twitter verwendet werden sollen."
    10801083
    1081 #: admin/apwp-woocommerce-tab.php:115
     1084#: admin/apwp-woocommerce-tab.php:117
    10821085msgid "Select your product categories"
    10831086msgstr "Wählen Sie Ihre Produktkategorien"
    10841087
    1085 #: admin/apwp-woocommerce-tab.php:119
     1088#: admin/apwp-woocommerce-tab.php:121
    10861089msgid ""
    10871090"The categories you select will allow all products within those categories to "
     
    10911094"aller Produkte in diesen Kategorien auf <em>Twitter</em>."
    10921095
    1093 #: admin/apwp-woocommerce-tab.php:154
     1096#: admin/apwp-woocommerce-tab.php:156
    10941097#: admin/includes/apwp-list-table-functions.php:144
    10951098#: admin/includes/apwp-list-table-functions.php:156
     
    10991102msgstr "Wählen Sie Alle"
    11001103
    1101 #: admin/apwp-woocommerce-tab.php:157
     1104#: admin/apwp-woocommerce-tab.php:159
    11021105msgid "Select none"
    11031106msgstr "Nichts ausgewählt"
    11041107
    1105 #: admin/apwp-woocommerce-tab.php:161
     1108#: admin/apwp-woocommerce-tab.php:163
    11061109msgid "Please select at least one category."
    11071110msgstr "Bitte wählen Sie mindestens eine Kategorie aus."
     
    14061409msgstr "Auto Post WooCommerce-Produkte Status"
    14071410
    1408 #: admin/auto-post-woocommerce-products-settings.php:366
    1409 #: admin/auto-post-woocommerce-products-settings.php:383
     1411#: admin/auto-post-woocommerce-products-settings.php:361
     1412#: admin/auto-post-woocommerce-products-settings.php:378
    14101413msgid "Products per page"
    14111414msgstr "Produkte pro Seite"
     
    14391442msgstr "Statistiken"
    14401443
    1441 #: admin/auto-post-woocommerce-products-tabs.php:199
     1444#: admin/auto-post-woocommerce-products-tabs.php:202
    14421445msgid "Product Sharing"
    14431446msgstr "Produktfreigabe"
    14441447
    1445 #: admin/auto-post-woocommerce-products-tabs.php:202
     1448#: admin/auto-post-woocommerce-products-tabs.php:205
    14461449msgid "Share products to your social media accounts."
    14471450msgstr "Teilen Sie Produkte für Ihre Social-Media-Konten."
    14481451
    1449 #: admin/auto-post-woocommerce-products-tabs.php:240
     1452#: admin/auto-post-woocommerce-products-tabs.php:243
    14501453#: admin/includes/pro/apwp-quick-edit.php:72
    14511454msgid "Previous page"
    14521455msgstr "Vorherige Seite"
    14531456
    1454 #: admin/auto-post-woocommerce-products-tabs.php:245
     1457#: admin/auto-post-woocommerce-products-tabs.php:248
    14551458msgid ""
    14561459"Click one of the social media buttons below to begin sharing your product. "
     
    14631466"Ihren Post einzufügen."
    14641467
    1465 #: admin/auto-post-woocommerce-products-tabs.php:275
     1468#: admin/auto-post-woocommerce-products-tabs.php:278
    14661469msgid "none"
    14671470msgstr "keiner"
    14681471
    1469 #: admin/auto-post-woocommerce-products-tabs.php:302
     1472#: admin/auto-post-woocommerce-products-tabs.php:305
    14701473#: admin/includes/apwp-add-social-icons.php:49
    14711474msgid "discount"
    14721475msgstr "Rabatt"
    14731476
    1474 #: admin/auto-post-woocommerce-products-tabs.php:331
     1477#: admin/auto-post-woocommerce-products-tabs.php:334
    14751478msgid "not available"
    14761479msgstr "Nicht verfügbar"
    14771480
    1478 #: admin/auto-post-woocommerce-products-tabs.php:334
     1481#: admin/auto-post-woocommerce-products-tabs.php:337
    14791482msgid "No description available"
    14801483msgstr "Keine Beschreibung verfügbar"
    14811484
    1482 #: admin/auto-post-woocommerce-products-tabs.php:341
     1485#: admin/auto-post-woocommerce-products-tabs.php:344
    14831486msgid "Click any details to copy product information to the clipboard."
    14841487msgstr "Klicken Sie auf Details um Produktinformationen in die Zwischenablage zu kopieren."
    14851488
    1486 #: admin/auto-post-woocommerce-products-tabs.php:355
     1489#: admin/auto-post-woocommerce-products-tabs.php:358
    14871490msgid "Description"
    14881491msgstr "Beschreibung"
    14891492
    1490 #: admin/auto-post-woocommerce-products-tabs.php:359
     1493#: admin/auto-post-woocommerce-products-tabs.php:362
    14911494#: admin/includes/pro/apwp-quick-edit.php:780
    14921495msgid "Hashtags"
    14931496msgstr "Hashtags"
    14941497
    1495 #: admin/auto-post-woocommerce-products-tabs.php:369
     1498#: admin/auto-post-woocommerce-products-tabs.php:372
    14961499msgid "Bitly short link"
    14971500msgstr "Bitly kurze Verbindung"
    14981501
    1499 #: admin/auto-post-woocommerce-products-tabs.php:374
     1502#: admin/auto-post-woocommerce-products-tabs.php:377
    15001503msgid "This is a parent product."
    15011504msgstr "Dies ist ein Elternprodukt."
    15021505
    1503 #: admin/auto-post-woocommerce-products-tabs.php:379
     1506#: admin/auto-post-woocommerce-products-tabs.php:382
    15041507msgid "Product variation:"
    15051508msgstr "Produkt variation:"
    15061509
    1507 #: admin/auto-post-woocommerce-products-tabs.php:386
    1508 #: admin/includes/apwp-list-table-functions.php:1750
     1510#: admin/auto-post-woocommerce-products-tabs.php:389
     1511#: admin/includes/apwp-list-table-functions.php:1786
    15091512#: admin/includes/pro/apwp-quick-edit.php:664
    15101513msgid "Regular price"
    15111514msgstr "Regulärer Preis"
    15121515
    1513 #: admin/auto-post-woocommerce-products-tabs.php:390
    1514 #: admin/includes/apwp-list-table-functions.php:1751
     1516#: admin/auto-post-woocommerce-products-tabs.php:393
     1517#: admin/includes/apwp-list-table-functions.php:1787
    15151518#: admin/includes/pro/apwp-quick-edit.php:678
    15161519msgid "Sale price"
    15171520msgstr "Verkaufspreis"
    15181521
    1519 #: admin/auto-post-woocommerce-products-tabs.php:394
    1520 #: admin/includes/apwp-list-table-functions.php:1752
     1522#: admin/auto-post-woocommerce-products-tabs.php:397
     1523#: admin/includes/apwp-list-table-functions.php:1788
    15211524#: admin/includes/pro/apwp-quick-edit.php:692
    15221525msgid "Current price"
    15231526msgstr "Derzeitiger Preis"
    15241527
    1525 #: admin/auto-post-woocommerce-products-tabs.php:405
     1528#: admin/auto-post-woocommerce-products-tabs.php:408
    15261529msgid "Discount tag line"
    15271530msgstr "Rabatt-Tag-Linie"
     
    15391542"Zertifikat um es auf sozialen Medien zu posten."
    15401543
    1541 #: admin/includes/apwp-check-setup.php:101
     1544#: admin/includes/apwp-check-setup.php:105
    15421545#, php-format
    15431546msgid ""
     
    15501553"knowledgebase/enable-curl-via-the-php-ini-file/</a>"
    15511554
    1552 #: admin/includes/apwp-check-setup.php:110
     1555#: admin/includes/apwp-check-setup.php:114
    15531556msgid ""
    15541557"Please set a schedule to enable auto posting to Twitter, or disable auto "
     
    15591562"Veröffentlichung auf der TWITTER-Registerkarte."
    15601563
    1561 #: admin/includes/apwp-check-setup.php:140
     1564#: admin/includes/apwp-check-setup.php:144
    15621565msgid ""
    15631566"Please check your Twitter and Bitly codes on the Twitter tab. There are "
     
    15671570"Twitter. Es gibt fehlende Codes."
    15681571
    1569 #: admin/includes/apwp-check-setup.php:156
     1572#: admin/includes/apwp-check-setup.php:160
    15701573msgid "Please select at least one product category on the CATEGORY TAB."
    15711574msgstr "Bitte wählen Sie mindestens eine Produktkategorie auf der Registerkarte Kategorie aus."
     
    16611664msgstr "Neueste Version installiert."
    16621665
    1663 #: admin/includes/apwp-debug.php:26
     1666#: admin/includes/apwp-debug.php:25
    16641667msgid "APWCP status page"
    16651668msgstr "APWCP-Statusseite"
    16661669
    1667 #: admin/includes/apwp-debug.php:34
     1670#: admin/includes/apwp-debug.php:33
    16681671msgid "APWCP status information"
    16691672msgstr "APWCP-Statusinformationen"
    16701673
    1671 #: admin/includes/apwp-debug.php:38
     1674#: admin/includes/apwp-debug.php:37
    16721675msgid "Current settings and values"
    16731676msgstr "Aktuelle Einstellungen und Werte"
    16741677
    1675 #: admin/includes/apwp-debug.php:177
     1678#: admin/includes/apwp-debug.php:176
    16761679msgid "Log Files"
    16771680msgstr "Protokolldateien"
    16781681
    1679 #: admin/includes/apwp-debug.php:254
     1682#: admin/includes/apwp-debug.php:253
    16801683msgid "Copy data to clipboard"
    16811684msgstr "Kopiere Daten in die Zwischenablage"
    16821685
    1683 #: admin/includes/apwp-debug.php:446
     1686#: admin/includes/apwp-debug.php:445
    16841687msgid "Disable WP_DEBUG"
    16851688msgstr "Deaktivieren Sie WP_DEBUG"
    16861689
    1687 #: admin/includes/apwp-debug.php:450
     1690#: admin/includes/apwp-debug.php:449
    16881691msgid "Enable WP_DEBUG"
    16891692msgstr "Aktivieren Sie WP_DEBUG"
    16901693
    1691 #: admin/includes/apwp-debug.php:459
     1694#: admin/includes/apwp-debug.php:458
    16921695msgid "Debug mode set, refreshing page. . ."
    16931696msgstr "Debug-Modus gesetzt, Seite aktualisieren. . ."
    16941697
    1695 #: admin/includes/apwp-debug.php:463
     1698#: admin/includes/apwp-debug.php:462
    16961699msgid "Failed to set WP_DEBUG! Please try again."
    16971700msgstr "Fehler beim Festlegen von WP_DEBUG! Bitte versuche es erneut."
    16981701
    1699 #: admin/includes/apwp-debug.php:501
     1702#: admin/includes/apwp-debug.php:500
    17001703#, php-format
    17011704msgid ""
     
    17091712"Daten kopieren an klicken Zwischenablage-Schaltfläche."
    17101713
    1711 #: admin/includes/apwp-debug.php:509
     1714#: admin/includes/apwp-debug.php:508
    17121715msgid ""
    17131716"You may click the button below to Enable/Disable WP_DEBUG and the WP_DEBUG "
     
    17251728"verwenden."
    17261729
    1727 #: admin/includes/apwp-debug.php:512
     1730#: admin/includes/apwp-debug.php:511
    17281731msgid "Check this box to enable WP_DEBUG_DISPLAY."
    17291732msgstr "Aktivieren Sie dieses Kontrollkästchen um WP_DEBUG_DISPLAY zu aktivieren."
    17301733
    1731 #: admin/includes/apwp-debug.php:516
     1734#: admin/includes/apwp-debug.php:515
    17321735msgid "Enable WP_DEBUG_DISPLAY"
    17331736msgstr "Aktivieren Sie WP_DEBUG_DISPLAY"
     
    17351738#: admin/includes/apwp-display-product-list.php:49
    17361739#: admin/includes/apwp-list-table-functions.php:151
    1737 #: admin/includes/apwp-list-table-functions.php:1748
     1740#: admin/includes/apwp-list-table-functions.php:1784
    17381741#: admin/includes/pro/apwp-stats-table-functions.php:25
    17391742msgid "Category"
     
    21682171msgstr ": Variationsprodukte"
    21692172
    2170 #: admin/includes/apwp-list-table-functions.php:1744
     2173#: admin/includes/apwp-list-table-functions.php:1780
    21712174#: admin/includes/pro/apwp-quick-edit.php:558
    21722175#: admin/includes/pro/class-apwp-stats-table.php:142
     
    21742177msgstr "ID"
    21752178
    2176 #: admin/includes/apwp-list-table-functions.php:1745
     2179#: admin/includes/apwp-list-table-functions.php:1781
    21772180#: admin/includes/pro/class-apwp-stats-table.php:143
    21782181msgid "Image"
    21792182msgstr "Bild"
    21802183
    2181 #: admin/includes/apwp-list-table-functions.php:1747
     2184#: admin/includes/apwp-list-table-functions.php:1783
    21822185msgid "Type"
    21832186msgstr "Art"
    21842187
    2185 #: admin/includes/apwp-list-table-functions.php:1749
     2188#: admin/includes/apwp-list-table-functions.php:1785
    21862189#: admin/includes/pro/apwp-quick-edit.php:1076
    21872190msgid "Stock status"
    21882191msgstr "Lagerbestand"
    21892192
    2190 #: admin/includes/apwp-list-table-functions.php:1753
     2193#: admin/includes/apwp-list-table-functions.php:1789
    21912194msgid "Sold"
    21922195msgstr "Verkauft"
    21932196
    2194 #: admin/includes/apwp-list-table-functions.php:1754
     2197#: admin/includes/apwp-list-table-functions.php:1790
    21952198msgid "Sharing"
    21962199msgstr "Teilnehmen"
    21972200
    2198 #: admin/includes/apwp-list-table-functions.php:1775
     2201#: admin/includes/apwp-list-table-functions.php:1811
    21992202#: admin/includes/pro/apwp-quick-edit.php:821
    22002203msgid "Sale dates"
     
    23242327
    23252328#: admin/includes/display-quick-start-tab.php:59
    2326 msgid ""
    2327 "Added Bulk Actions to the Product list tab. The ability to edit products "
    2328 "with bulk edit is currently being added to the plugin."
    2329 msgstr ""
    2330 "Massenaktionen wurden der Registerkarte Produktliste hinzugefügt. Dem Plugin "
    2331 "wird derzeit die Möglichkeit hinzugefügt, Produkte mit Massenbearbeitung zu "
    2332 "bearbeiten."
     2329msgid "Added button to manually reset the products to Tweet list."
     2330msgstr "Schaltfläche hinzugefügt, um die Produkte manuell auf die Tweet-Liste zurückzusetzen."
    23332331
    23342332#: admin/includes/display-quick-start-tab.php:60
    23352333msgid ""
    2336 "Fixed the issues with the auto poster; showing incorrect number of products, "
    2337 "re-posting the same product right after it was posted, reseting the products "
    2338 "to post list when it was not time. "
    2339 msgstr ""
    2340 "Probleme mit dem Autoposter behoben; falsche Anzahl der Produkte anzeigen, "
    2341 "gleiches Produkt direkt nach der Veröffentlichung erneut buchen, Produkte "
    2342 "zurücksenden, wenn es nicht an der Zeit war."
    2343 
    2344 #: admin/includes/display-quick-start-tab.php:61
    2345 msgid ""
    2346 "Fixed issue when changing the auto post schedule, the screen would refresh "
    2347 "over and over."
    2348 msgstr ""
    2349 "Problem beim Ändern des Zeitplans für die automatische Nachbearbeitung "
    2350 "behoben, der Bildschirm wurde immer wieder aktualisiert."
     2334"Fixed a few other issues including retrieving Bitly shortlinks which had "
     2335"stopped working."
     2336msgstr ""
     2337"Einige andere Probleme wurden behoben, darunter das Abrufen von Bitly-"
     2338"Kurzverbindungen, die nicht mehr funktionieren."
    23512339
    23522340#: admin/includes/display-quick-start-tab.php:65
  • auto-post-woocommerce-products/trunk/languages/auto-post-woocommerce-products-es_ES.po

    r2001944 r2002116  
    66msgid ""
    77msgstr ""
    8 "Project-Id-Version: APWCP 2.1.2.3\n"
     8"Project-Id-Version: APWCP 2.1.2.4\n"
    99"Report-Msgid-Bugs-To: [email protected]\n"
    10 "POT-Creation-Date: 2018-12-19 16:19-0600\n"
    11 "PO-Revision-Date: 2018-12-19 16:24-0600\n"
     10"POT-Creation-Date: 2018-12-27 00:59-0600\n"
     11"PO-Revision-Date: 2018-12-27 01:00-0600\n"
    1212"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1313"Language-Team: LANGUAGE <[email protected]>\n"
     
    3232msgstr "Ayuda"
    3333
    34 #: auto-post-woocommerce-products.php:84 admin/apwp-functions-admin.php:1216
     34#: auto-post-woocommerce-products.php:84 admin/apwp-functions-admin.php:1218
    3535msgid "Auto Post WooCommerce Products"
    3636msgstr "Productos de publicación automática de WooCommerce"
     
    7878
    7979#: admin/apwp-fs-functions.php:42 admin/apwp-fs-functions.php:174
    80 #: admin/apwp-schedule-tab.php:363 admin/apwp-settings-tab.php:60
     80#: admin/apwp-schedule-tab.php:374 admin/apwp-settings-tab.php:60
    8181#: admin/apwp-settings-tab.php:137 admin/apwp-settings-tab.php:232
    8282#: admin/apwp-settings-tab.php:283 admin/apwp-settings-tab.php:356
     
    225225msgstr "descargable"
    226226
    227 #: admin/apwp-functions-admin.php:865 admin/apwp-functions-admin.php:866
    228 #: admin/auto-post-woocommerce-products-tabs.php:301
     227#: admin/apwp-functions-admin.php:867 admin/apwp-functions-admin.php:868
     228#: admin/auto-post-woocommerce-products-tabs.php:304
    229229#: admin/includes/apwp-add-social-icons.php:48
    230230msgid "ON SALE!"
    231231msgstr "¡EN VENTA!"
    232232
    233 #: admin/apwp-functions-admin.php:942
     233#: admin/apwp-functions-admin.php:944
    234234#: admin/auto-post-woocommerce-products-help.php:126
    235235msgid "STARTER"
    236236msgstr "EMPEZAR"
    237237
    238 #: admin/apwp-functions-admin.php:945
     238#: admin/apwp-functions-admin.php:947
    239239#: admin/auto-post-woocommerce-products-help.php:134
    240240msgid "PROFESSIONAL"
    241241msgstr "PROFESIONAL"
    242242
    243 #: admin/apwp-functions-admin.php:948
     243#: admin/apwp-functions-admin.php:950
    244244#: admin/auto-post-woocommerce-products-help.php:130
    245245msgid "BUSINESS"
    246246msgstr "NEGOCIO"
    247247
    248 #: admin/apwp-functions-admin.php:951
     248#: admin/apwp-functions-admin.php:953
    249249msgid "FREE"
    250250msgstr "GRATIS"
    251251
    252 #: admin/apwp-functions-admin.php:1203
     252#: admin/apwp-functions-admin.php:1205
    253253msgid ""
    254254"While using a LOCALHOST server, all posts will be simulated and all calls to "
     
    258258"todas las llamadas a Bitly.com se suspenderán."
    259259
    260 #: admin/apwp-functions-admin.php:1221
     260#: admin/apwp-functions-admin.php:1223
    261261msgid "WooCommerce product management and product posting to social media"
    262262msgstr "Gestión de productos de WooCommerce y publicación de productos en las redes sociales"
    263263
    264 #: admin/apwp-functions-admin.php:1223
     264#: admin/apwp-functions-admin.php:1225
    265265msgid "version"
    266266msgstr "versión"
    267267
    268 #: admin/apwp-functions-admin.php:1227
     268#: admin/apwp-functions-admin.php:1229
    269269msgid "by"
    270270msgstr "por"
    271271
    272 #: admin/apwp-functions-admin.php:1239
     272#: admin/apwp-functions-admin.php:1241
    273273#, php-format
    274274msgid ""
     
    279279"elegir un hashtag</a>."
    280280
    281 #: admin/apwp-functions-admin.php:1246
     281#: admin/apwp-functions-admin.php:1248
    282282#, php-format
    283283msgid ""
     
    288288"usar Hashtags con eficacia sin ser molesto</a>."
    289289
    290 #: admin/apwp-functions-admin.php:1253
     290#: admin/apwp-functions-admin.php:1255
    291291msgid ""
    292292"The hashtag (#) has become one of the most valuable assets in any modern "
     
    296296"cualquier campaña de marketing moderna."
    297297
    298 #: admin/apwp-functions-admin.php:1254
     298#: admin/apwp-functions-admin.php:1256
    299299msgid ""
    300300"The brands that create the most effective hashtags and employ them well, "
     
    304304"los beneficios en Twitter."
    305305
    306 #: admin/apwp-functions-admin.php:1255
     306#: admin/apwp-functions-admin.php:1257
    307307msgid ""
    308308"Those who haven&apos;t invested the time and thought carefully about their "
     
    312312" hashtag (s) y cómo van a ser utilizados obtienen resultados predecibles."
    313313
    314 #: admin/apwp-functions-admin.php:1256
     314#: admin/apwp-functions-admin.php:1258
    315315msgid ""
    316316". . .good hashtags should be memorable, so that your customers will easily "
     
    320320"recuerden fácilmente."
    321321
    322 #: admin/apwp-functions-admin.php:1257
     322#: admin/apwp-functions-admin.php:1259
    323323msgid ""
    324324"In practice, hashtags are used to categorize social media content into "
     
    328328"redes sociales en listas fácilmente navegables."
    329329
    330 #: admin/apwp-functions-admin.php:1258
     330#: admin/apwp-functions-admin.php:1260
    331331msgid ""
    332332"By including the #[INSERT KEYWORD] in a tweet, it then becomes visible "
     
    336336"línea con otras publicaciones que usan ese mismo hashtag."
    337337
    338 #: admin/apwp-functions-admin.php:1259
     338#: admin/apwp-functions-admin.php:1261
    339339msgid ""
    340340"Sometimes, the best way to use hashtags is to find ones that already exist."
     
    342342"A veces, la mejor forma de usar hashtags es encontrar los que ya existen."
    343343
    344 #: admin/apwp-functions-admin.php:1308
     344#: admin/apwp-functions-admin.php:1310
    345345msgid "Thank you for using our plugin!"
    346346msgstr "¡Gracias por usar nuestro plugin!"
    347347
    348 #: admin/apwp-functions-admin.php:1311
     348#: admin/apwp-functions-admin.php:1313
    349349msgid "You are currently utilizing a FREE Trial period."
    350350msgstr "Actualmente estás utilizando un período de prueba GRATUITO."
    351351
    352 #: admin/apwp-functions-admin.php:1314
     352#: admin/apwp-functions-admin.php:1316
    353353#, php-format
    354354msgid ""
     
    361361"¡clasificación!"
    362362
    363 #: admin/apwp-functions-admin.php:1328
     363#: admin/apwp-functions-admin.php:1330
    364364#, php-format
    365365msgid ""
     
    371371"a>"
    372372
    373 #: admin/apwp-functions-admin.php:1342
     373#: admin/apwp-functions-admin.php:1344
    374374#, php-format
    375375msgid ""
     
    380380"\"página de cuenta\" target=\"_blank\">Página de la cuenta</a>."
    381381
    382 #: admin/apwp-functions-admin.php:1361
     382#: admin/apwp-functions-admin.php:1363
    383383#, php-format
    384384msgid ""
     
    390390"a>."
    391391
    392 #: admin/apwp-functions-admin.php:1380
     392#: admin/apwp-functions-admin.php:1382
    393393#, php-format
    394394msgid ""
     
    399399"s\" title=\"ver planes\" target=\"_blank\">Ver todos los planes</a>."
    400400
    401 #: admin/apwp-functions-admin.php:1400
     401#: admin/apwp-functions-admin.php:1402
    402402msgid "Success!"
    403403msgstr "¡Éxito!"
    404404
    405 #: admin/apwp-functions-admin.php:1411
     405#: admin/apwp-functions-admin.php:1413
    406406msgid "Auto Post INFORMATION:"
    407407msgstr "Auto publicación INFORMACIÓN:"
    408408
    409 #: admin/apwp-functions-admin.php:1422
     409#: admin/apwp-functions-admin.php:1424
    410410msgid "Auto Post WARNING:"
    411411msgstr "Auto Post ADVERTENCIA:"
    412412
    413 #: admin/apwp-functions-admin.php:1433
     413#: admin/apwp-functions-admin.php:1435
    414414msgid "WOOCOMMERCE ERROR:"
    415415msgstr "ERROR DE WOOCOMMERCE:"
    416416
    417 #: admin/apwp-functions-admin.php:1444
     417#: admin/apwp-functions-admin.php:1446
    418418msgid "APWCP ERROR:"
    419419msgstr "ERROR APWCP:"
    420420
    421 #: admin/apwp-functions-admin.php:1455
     421#: admin/apwp-functions-admin.php:1457
    422422msgid "Security ERROR:"
    423423msgstr "Error de seguridad:"
    424424
    425 #: admin/apwp-functions-admin.php:1465
     425#: admin/apwp-functions-admin.php:1467
    426426#: admin/includes/pro/apwp-quick-edit.php:34
    427427msgid "Product Edit ERROR:"
    428428msgstr "Producto Editar ERROR:"
    429429
    430 #: admin/apwp-functions-admin.php:1590
     430#: admin/apwp-functions-admin.php:1592
    431431msgid "Pause schedule"
    432432msgstr "Pausa de horario"
    433433
    434 #: admin/apwp-functions-admin.php:1594
     434#: admin/apwp-functions-admin.php:1596
    435435msgid "Schedule is disabled"
    436436msgstr "El horario está deshabilitado"
    437437
    438 #: admin/apwp-functions-admin.php:1598
     438#: admin/apwp-functions-admin.php:1600
    439439#: admin/includes/class-apwp-cron-functions.php:116
    440440msgid "Every 24 hours"
    441441msgstr "Cada 24 horas"
    442442
    443 #: admin/apwp-functions-admin.php:1602
     443#: admin/apwp-functions-admin.php:1604
    444444#: admin/includes/class-apwp-cron-functions.php:121
    445445msgid "Every 12 hours"
    446446msgstr "Cada 12 horas"
    447447
    448 #: admin/apwp-functions-admin.php:1606
     448#: admin/apwp-functions-admin.php:1608
    449449#: admin/includes/class-apwp-cron-functions.php:126
    450450msgid "Every 8 hours"
    451451msgstr "Cada 8 horas"
    452452
    453 #: admin/apwp-functions-admin.php:1610
     453#: admin/apwp-functions-admin.php:1612
    454454#: admin/includes/class-apwp-cron-functions.php:131
    455455msgid "Every 7 hours"
    456456msgstr "Cada 7 horas"
    457457
    458 #: admin/apwp-functions-admin.php:1614
     458#: admin/apwp-functions-admin.php:1616
    459459#: admin/includes/class-apwp-cron-functions.php:144
    460460msgid "Every 6 hours"
    461461msgstr "Cada 6 horas"
    462462
    463 #: admin/apwp-functions-admin.php:1618
     463#: admin/apwp-functions-admin.php:1620
    464464#: admin/includes/class-apwp-cron-functions.php:154
    465465msgid "Every 5 hours"
    466466msgstr "Cada 5 horas"
    467467
    468 #: admin/apwp-functions-admin.php:1622
     468#: admin/apwp-functions-admin.php:1624
    469469#: admin/includes/class-apwp-cron-functions.php:149
    470470msgid "Every 4 hours"
    471471msgstr "Cada 4 horas"
    472472
    473 #: admin/apwp-functions-admin.php:1626
     473#: admin/apwp-functions-admin.php:1628
    474474#: admin/includes/class-apwp-cron-functions.php:163
    475475msgid "Every 3 hours"
    476476msgstr "Cada 3 horas"
    477477
    478 #: admin/apwp-functions-admin.php:1630
     478#: admin/apwp-functions-admin.php:1632
    479479#: admin/includes/class-apwp-cron-functions.php:168
    480480msgid "Every 2 hours"
    481481msgstr "Cada 2 horas"
    482482
    483 #: admin/apwp-functions-admin.php:1634
     483#: admin/apwp-functions-admin.php:1636
    484484#: admin/includes/class-apwp-cron-functions.php:177
    485485msgid "Every hour"
    486486msgstr "Cada hora"
    487487
    488 #: admin/apwp-functions-admin.php:1638
     488#: admin/apwp-functions-admin.php:1640
    489489#: admin/includes/class-apwp-cron-functions.php:182
    490490msgid "Every 30 minutes"
    491491msgstr "Cada 30 minutos"
    492492
    493 #: admin/apwp-functions-admin.php:1667
     493#: admin/apwp-functions-admin.php:1669
    494494msgid "End current Sale"
    495495msgstr "Venta de corriente final"
    496496
    497 #: admin/apwp-functions-admin.php:1668
     497#: admin/apwp-functions-admin.php:1670
    498498msgid "Cancel"
    499499msgstr "Cancelar"
    500500
    501 #: admin/apwp-functions-admin.php:1669
     501#: admin/apwp-functions-admin.php:1671
    502502msgid "Delete all products"
    503503msgstr "Eliminar todos los productos"
    504504
    505 #: admin/apwp-functions-admin.php:1670
     505#: admin/apwp-functions-admin.php:1672
    506506msgid "Are you sure you want to permanently delete"
    507507msgstr "¿Seguro que quieres eliminar de forma permanente"
    508508
    509 #: admin/apwp-functions-admin.php:1671
     509#: admin/apwp-functions-admin.php:1673
    510510msgid ""
    511511"This procedure cannot be reversed and if this is a variable product then all "
     
    515515"variable, también se eliminarán todas las variaciones."
    516516
    517 #: admin/apwp-functions-admin.php:1672
     517#: admin/apwp-functions-admin.php:1674
    518518msgid "Are you sure you want to move this item to the Trash?"
    519519msgstr "¿Seguro que quieres mover este elemento a la Papelera?"
    520520
    521 #: admin/apwp-functions-admin.php:1673
     521#: admin/apwp-functions-admin.php:1675
    522522#: admin/includes/apwp-list-table-functions.php:1050
    523523msgid "Auto sharing enabled"
    524524msgstr "Auto intercambio habilitado"
    525525
    526 #: admin/apwp-functions-admin.php:1674
     526#: admin/apwp-functions-admin.php:1676
    527527#: admin/includes/apwp-list-table-functions.php:1051
    528528msgid "Not auto shared"
    529529msgstr "No se comparte automáticamente"
    530530
    531 #: admin/apwp-functions-admin.php:1675
     531#: admin/apwp-functions-admin.php:1677
    532532#: admin/includes/apwp-product-list-class.php:375
    533533msgid "Product is featured"
    534534msgstr "El producto es ofrecido"
    535535
    536 #: admin/apwp-functions-admin.php:1676
     536#: admin/apwp-functions-admin.php:1678
    537537#: admin/includes/apwp-product-list-class.php:376
    538538msgid "Product is not featured"
    539539msgstr "El producto no aparece"
    540540
    541 #: admin/apwp-functions-admin.php:1677
     541#: admin/apwp-functions-admin.php:1679
    542542#: admin/includes/apwp-list-table-functions.php:1112
    543543msgid "Add product to click data statistics"
    544544msgstr "Añadir producto para hacer clic en estadísticas de datos"
    545545
    546 #: admin/apwp-functions-admin.php:1678
     546#: admin/apwp-functions-admin.php:1680
    547547#: admin/includes/apwp-list-table-functions.php:1113
    548548msgid "Remove product from click data statistics"
    549549msgstr "Eliminar producto de estadísticas de clics"
    550550
    551 #: admin/apwp-functions-admin.php:1679
     551#: admin/apwp-functions-admin.php:1681
    552552msgid ""
    553553"You do not have permisson to perform this action. Please ask your Admin."
     
    556556"administrador."
    557557
    558 #: admin/apwp-functions-admin.php:1680
     558#: admin/apwp-functions-admin.php:1682
    559559msgid "WordPress security check failed. Please try again."
    560560msgstr "La comprobación de seguridad de WordPress falló. Inténtalo de nuevo."
    561561
    562 #: admin/apwp-functions-admin.php:1681
     562#: admin/apwp-functions-admin.php:1683
    563563msgid "An error has occured. Please try again."
    564564msgstr "Se ha producido un error. Inténtalo de nuevo."
    565565
    566 #: admin/apwp-schedule-tab.php:30
     566#: admin/apwp-schedule-tab.php:32
    567567msgid "Schedule your Twitter auto posts"
    568568msgstr "Programe sus publicaciones automáticas de Twitter"
    569569
    570 #: admin/apwp-schedule-tab.php:64
     570#: admin/apwp-schedule-tab.php:76
    571571msgid "Waiting on CRON scheduler. Information will be updated soon."
    572572msgstr "Esperando en el programador CRON. La información será actualizada en breve."
    573573
    574 #: admin/apwp-schedule-tab.php:73
     574#: admin/apwp-schedule-tab.php:85
    575575msgid ""
    576576"The last auto post failed. Please see the APWP debug log on the Status tab."
     
    579579"de APWP en la pestaña Estado."
    580580
    581 #: admin/apwp-schedule-tab.php:99
     581#: admin/apwp-schedule-tab.php:110
    582582msgid "Unknown - please set a new schedule."
    583583msgstr "Desconocido: establezca un nuevo horario."
    584584
    585 #: admin/apwp-schedule-tab.php:103
     585#: admin/apwp-schedule-tab.php:114
    586586msgid "Last auto Tweet information"
    587587msgstr "Última información automática de Tweet"
    588588
    589 #: admin/apwp-schedule-tab.php:110
     589#: admin/apwp-schedule-tab.php:121
    590590msgid "While using a LOCALHOST server, all posts will be <em>simulated</em>."
    591591msgstr "Al usar un servidor LOCALHOST, todas las publicaciones serán <em>simuladas</em>."
    592592
    593 #: admin/apwp-schedule-tab.php:121
     593#: admin/apwp-schedule-tab.php:132
    594594msgid "Posting schedule:"
    595595msgstr "Horario de publicación:"
    596596
    597 #: admin/apwp-schedule-tab.php:130
     597#: admin/apwp-schedule-tab.php:141
    598598msgid "Next post:"
    599599msgstr "Siguiente publicación:"
    600600
    601 #: admin/apwp-schedule-tab.php:138
     601#: admin/apwp-schedule-tab.php:149
    602602msgid "Last post:"
    603603msgstr "Ultima publicación:"
    604604
    605 #: admin/apwp-schedule-tab.php:145
     605#: admin/apwp-schedule-tab.php:156
    606606msgid "Product ID#:"
    607607msgstr "ID del Producto#:"
    608608
    609 #: admin/apwp-schedule-tab.php:151
    610 #: admin/includes/apwp-list-table-functions.php:1746
     609#: admin/apwp-schedule-tab.php:162
     610#: admin/includes/apwp-list-table-functions.php:1782
    611611#: admin/includes/pro/apwp-quick-edit.php:602
    612612msgid "Title"
    613613msgstr "Título"
    614614
    615 #: admin/apwp-schedule-tab.php:157
     615#: admin/apwp-schedule-tab.php:168
    616616msgid "Post content:"
    617617msgstr "Publicar Contenido:"
    618618
    619 #: admin/apwp-schedule-tab.php:166
     619#: admin/apwp-schedule-tab.php:177
    620620msgid "Hashtags used"
    621621msgstr "Hashtags utilizados"
    622622
    623 #: admin/apwp-schedule-tab.php:175
    624 #: admin/auto-post-woocommerce-products-tabs.php:363
     623#: admin/apwp-schedule-tab.php:186
     624#: admin/auto-post-woocommerce-products-tabs.php:366
    625625msgid "URL"
    626626msgstr "URL"
    627627
    628 #: admin/apwp-schedule-tab.php:186
     628#: admin/apwp-schedule-tab.php:197
    629629#: admin/includes/pro/class-apwp-stats-table.php:360
    630630msgid "Share to social media"
    631631msgstr "Compartir en las redes sociales"
    632632
    633 #: admin/apwp-schedule-tab.php:209
     633#: admin/apwp-schedule-tab.php:220
    634634msgid "Set your schedule"
    635635msgstr "Establece tu horario"
    636636
    637 #: admin/apwp-schedule-tab.php:212
     637#: admin/apwp-schedule-tab.php:223
    638638msgid "Schedule when your products will be posted to Twitter."
    639639msgstr "Programe cuándo se publicarán sus productos en Twitter."
    640640
    641 #: admin/apwp-schedule-tab.php:284
     641#: admin/apwp-schedule-tab.php:295
    642642msgid "How often would you like to auto post a product?"
    643643msgstr "¿Con qué frecuencia le gustaría publicar un producto automáticamente?"
    644644
    645 #: admin/apwp-schedule-tab.php:288
     645#: admin/apwp-schedule-tab.php:299
    646646msgid ""
    647647"Select how often you would like to automatically post a product to "
     
    651651"producto en <em>Twitter</em> y guardar."
    652652
    653 #: admin/apwp-schedule-tab.php:350 admin/includes/pro/apwp-quick-edit.php:102
     653#: admin/apwp-schedule-tab.php:361 admin/includes/pro/apwp-quick-edit.php:102
    654654msgid "Save changes"
    655655msgstr "Guardar cambios"
    656656
    657 #: admin/apwp-schedule-tab.php:354
     657#: admin/apwp-schedule-tab.php:365
    658658msgid "Schedule saved. Posting Tweet. . ."
    659659msgstr "Horario guardado Publicando Tweet. . ."
    660660
    661 #: admin/apwp-schedule-tab.php:357
    662 #| msgid "Disabled CRON schedule. . ."
     661#: admin/apwp-schedule-tab.php:368
    663662msgid "Disabling CRON schedule. . ."
    664663msgstr "Deshabilitando el horario de CRON. . ."
    665664
    666 #: admin/apwp-schedule-tab.php:360
     665#: admin/apwp-schedule-tab.php:371
    667666msgid "Please select a schedule other than the one already set."
    668667msgstr "Por favor, seleccione una programación diferente a la ya establecida."
    669668
    670 #: admin/apwp-schedule-tab.php:371
     669#: admin/apwp-schedule-tab.php:382
    671670#, php-format
    672671msgid ""
     
    677676">CIL Creations</a>"
    678677
    679 #: admin/apwp-schedule-tab.php:379
     678#: admin/apwp-schedule-tab.php:390
    680679msgid ""
    681680"If you have fewer than 50 products, it is recommended to set your posting "
     
    10301029msgstr "Vea nuestra <a href=\"%s\" target=\"_blank\">política de privacidad</a>."
    10311030
    1032 #: admin/apwp-woocommerce-tab.php:25
     1031#: admin/apwp-woocommerce-tab.php:26
    10331032msgid "WooCommerce product categories"
    10341033msgstr "Categorías de productos de WooCommerce"
    10351034
    1036 #: admin/apwp-woocommerce-tab.php:45
     1035#: admin/apwp-woocommerce-tab.php:44
    10371036msgid "Current Auto Posting Data"
    10381037msgstr "Datos de publicación automática actuales"
    10391038
    1040 #: admin/apwp-woocommerce-tab.php:52
     1039#: admin/apwp-woocommerce-tab.php:51
    10411040msgid "Product to Tweet"
    10421041msgid_plural "Products to Tweet"
     
    10441043msgstr[1] "Productos a Tweet"
    10451044
    1046 #: admin/apwp-woocommerce-tab.php:58
     1045#: admin/apwp-woocommerce-tab.php:57
    10471046#: admin/includes/apwp-dashboard-widget.php:159
    10481047msgid "Scheduled to Tweet"
    10491048msgstr "Programado para Tweet"
    10501049
    1051 #: admin/apwp-woocommerce-tab.php:66
     1050#: admin/apwp-woocommerce-tab.php:65
    10521051msgid ""
    10531052"These figures are automatically updated when you make any changes to a "
     
    10591058"producto en su inventario."
    10601059
    1061 #: admin/apwp-woocommerce-tab.php:69
     1060#: admin/apwp-woocommerce-tab.php:68
    10621061msgid ""
    10631062"<b>NOTE:</b> Any changes made to a product listing are reflected when the "
     
    10691068"no se guardan en este complemento, se recupera en el momento de publicación."
    10701069
    1071 #: admin/apwp-woocommerce-tab.php:91
     1070#: admin/apwp-woocommerce-tab.php:73
     1071msgid "Manually reset Products to Tweet list"
     1072msgstr "Reajustar manualmente los productos a la lista de Tweet"
     1073
     1074#: admin/apwp-woocommerce-tab.php:93
    10721075msgid "Select which categories to use when auto posting products to Twitter."
    10731076msgstr "Seleccione qué categorías usar cuando envíe productos automáticamente a Twitter."
    10741077
    1075 #: admin/apwp-woocommerce-tab.php:115
     1078#: admin/apwp-woocommerce-tab.php:117
    10761079msgid "Select your product categories"
    10771080msgstr "Seleccione sus categorías de productos"
    10781081
    1079 #: admin/apwp-woocommerce-tab.php:119
     1082#: admin/apwp-woocommerce-tab.php:121
    10801083msgid ""
    10811084"The categories you select will allow all products within those categories to "
     
    10851088"esas categorías se publiquen automáticamente en <em>Twitter</em>."
    10861089
    1087 #: admin/apwp-woocommerce-tab.php:154
     1090#: admin/apwp-woocommerce-tab.php:156
    10881091#: admin/includes/apwp-list-table-functions.php:144
    10891092#: admin/includes/apwp-list-table-functions.php:156
     
    10931096msgstr "Seleccionar todo"
    10941097
    1095 #: admin/apwp-woocommerce-tab.php:157
     1098#: admin/apwp-woocommerce-tab.php:159
    10961099msgid "Select none"
    10971100msgstr "Seleccionar ninguno"
    10981101
    1099 #: admin/apwp-woocommerce-tab.php:161
     1102#: admin/apwp-woocommerce-tab.php:163
    11001103msgid "Please select at least one category."
    11011104msgstr "Por favor seleccione al menos una categoría."
     
    14001403msgstr "Estado de productos de Auto WooCommerce"
    14011404
    1402 #: admin/auto-post-woocommerce-products-settings.php:366
    1403 #: admin/auto-post-woocommerce-products-settings.php:383
     1405#: admin/auto-post-woocommerce-products-settings.php:361
     1406#: admin/auto-post-woocommerce-products-settings.php:378
    14041407msgid "Products per page"
    14051408msgstr "Productos por pagina"
     
    14331436msgstr "Estadística"
    14341437
    1435 #: admin/auto-post-woocommerce-products-tabs.php:199
     1438#: admin/auto-post-woocommerce-products-tabs.php:202
    14361439msgid "Product Sharing"
    14371440msgstr "Compartir productos"
    14381441
    1439 #: admin/auto-post-woocommerce-products-tabs.php:202
     1442#: admin/auto-post-woocommerce-products-tabs.php:205
    14401443msgid "Share products to your social media accounts."
    14411444msgstr "Comparte productos en tus cuentas de redes sociales."
    14421445
    1443 #: admin/auto-post-woocommerce-products-tabs.php:240
     1446#: admin/auto-post-woocommerce-products-tabs.php:243
    14441447#: admin/includes/pro/apwp-quick-edit.php:72
    14451448msgid "Previous page"
    14461449msgstr "Pagina anterior"
    14471450
    1448 #: admin/auto-post-woocommerce-products-tabs.php:245
     1451#: admin/auto-post-woocommerce-products-tabs.php:248
    14491452msgid ""
    14501453"Click one of the social media buttons below to begin sharing your product. "
     
    14571460"en tu publicación."
    14581461
    1459 #: admin/auto-post-woocommerce-products-tabs.php:275
     1462#: admin/auto-post-woocommerce-products-tabs.php:278
    14601463msgid "none"
    14611464msgstr "ninguna"
    14621465
    1463 #: admin/auto-post-woocommerce-products-tabs.php:302
     1466#: admin/auto-post-woocommerce-products-tabs.php:305
    14641467#: admin/includes/apwp-add-social-icons.php:49
    14651468msgid "discount"
    14661469msgstr "descuento"
    14671470
    1468 #: admin/auto-post-woocommerce-products-tabs.php:331
     1471#: admin/auto-post-woocommerce-products-tabs.php:334
    14691472msgid "not available"
    14701473msgstr "no disponible"
    14711474
    1472 #: admin/auto-post-woocommerce-products-tabs.php:334
     1475#: admin/auto-post-woocommerce-products-tabs.php:337
    14731476msgid "No description available"
    14741477msgstr "No hay descripción disponible"
    14751478
    1476 #: admin/auto-post-woocommerce-products-tabs.php:341
     1479#: admin/auto-post-woocommerce-products-tabs.php:344
    14771480msgid "Click any details to copy product information to the clipboard."
    14781481msgstr "Haga clic en cualquier detalle para copiar la información del producto al portapapeles."
    14791482
    1480 #: admin/auto-post-woocommerce-products-tabs.php:355
     1483#: admin/auto-post-woocommerce-products-tabs.php:358
    14811484msgid "Description"
    14821485msgstr "Descripción"
    14831486
    1484 #: admin/auto-post-woocommerce-products-tabs.php:359
     1487#: admin/auto-post-woocommerce-products-tabs.php:362
    14851488#: admin/includes/pro/apwp-quick-edit.php:780
    14861489msgid "Hashtags"
    14871490msgstr "Hashtags"
    14881491
    1489 #: admin/auto-post-woocommerce-products-tabs.php:369
     1492#: admin/auto-post-woocommerce-products-tabs.php:372
    14901493msgid "Bitly short link"
    14911494msgstr "Bitly enlace corto"
    14921495
    1493 #: admin/auto-post-woocommerce-products-tabs.php:374
     1496#: admin/auto-post-woocommerce-products-tabs.php:377
    14941497msgid "This is a parent product."
    14951498msgstr "Este es un producto principal."
    14961499
    1497 #: admin/auto-post-woocommerce-products-tabs.php:379
     1500#: admin/auto-post-woocommerce-products-tabs.php:382
    14981501msgid "Product variation:"
    14991502msgstr "Variación del producto:"
    15001503
    1501 #: admin/auto-post-woocommerce-products-tabs.php:386
    1502 #: admin/includes/apwp-list-table-functions.php:1750
     1504#: admin/auto-post-woocommerce-products-tabs.php:389
     1505#: admin/includes/apwp-list-table-functions.php:1786
    15031506#: admin/includes/pro/apwp-quick-edit.php:664
    15041507msgid "Regular price"
    15051508msgstr "Precio regular"
    15061509
    1507 #: admin/auto-post-woocommerce-products-tabs.php:390
    1508 #: admin/includes/apwp-list-table-functions.php:1751
     1510#: admin/auto-post-woocommerce-products-tabs.php:393
     1511#: admin/includes/apwp-list-table-functions.php:1787
    15091512#: admin/includes/pro/apwp-quick-edit.php:678
    15101513msgid "Sale price"
    15111514msgstr "Precio de venta"
    15121515
    1513 #: admin/auto-post-woocommerce-products-tabs.php:394
    1514 #: admin/includes/apwp-list-table-functions.php:1752
     1516#: admin/auto-post-woocommerce-products-tabs.php:397
     1517#: admin/includes/apwp-list-table-functions.php:1788
    15151518#: admin/includes/pro/apwp-quick-edit.php:692
    15161519msgid "Current price"
    15171520msgstr "Precio actual"
    15181521
    1519 #: admin/auto-post-woocommerce-products-tabs.php:405
     1522#: admin/auto-post-woocommerce-products-tabs.php:408
    15201523msgid "Discount tag line"
    15211524msgstr "Línea de etiqueta de descuento"
     
    15331536"para publicar en las redes sociales."
    15341537
    1535 #: admin/includes/apwp-check-setup.php:101
     1538#: admin/includes/apwp-check-setup.php:105
    15361539#, php-format
    15371540msgid ""
     
    15441547"knowledgebase/enable-curl-via-the-php-ini-file/</a>"
    15451548
    1546 #: admin/includes/apwp-check-setup.php:110
     1549#: admin/includes/apwp-check-setup.php:114
    15471550msgid ""
    15481551"Please set a schedule to enable auto posting to Twitter, or disable auto "
     
    15521555"Twitter o deshabilitar la publicación automática en la pestaña TWITTER."
    15531556
    1554 #: admin/includes/apwp-check-setup.php:140
     1557#: admin/includes/apwp-check-setup.php:144
    15551558msgid ""
    15561559"Please check your Twitter and Bitly codes on the Twitter tab. There are "
     
    15601563"Faltan códigos"
    15611564
    1562 #: admin/includes/apwp-check-setup.php:156
     1565#: admin/includes/apwp-check-setup.php:160
    15631566msgid "Please select at least one product category on the CATEGORY TAB."
    15641567msgstr "Seleccione al menos una categoría de producto en la PESTAÑA CATEGORÍA."
     
    16541657msgstr "La última versión instalada."
    16551658
    1656 #: admin/includes/apwp-debug.php:26
     1659#: admin/includes/apwp-debug.php:25
    16571660msgid "APWCP status page"
    16581661msgstr "Página de estado APWCP"
    16591662
    1660 #: admin/includes/apwp-debug.php:34
     1663#: admin/includes/apwp-debug.php:33
    16611664msgid "APWCP status information"
    16621665msgstr "Información de estado de APWCP"
    16631666
    1664 #: admin/includes/apwp-debug.php:38
     1667#: admin/includes/apwp-debug.php:37
    16651668msgid "Current settings and values"
    16661669msgstr "Configuraciones actuales y valores"
    16671670
    1668 #: admin/includes/apwp-debug.php:177
     1671#: admin/includes/apwp-debug.php:176
    16691672msgid "Log Files"
    16701673msgstr "Archivos de registro"
    16711674
    1672 #: admin/includes/apwp-debug.php:254
     1675#: admin/includes/apwp-debug.php:253
    16731676msgid "Copy data to clipboard"
    16741677msgstr "Copiar datos al portapapeles"
    16751678
    1676 #: admin/includes/apwp-debug.php:446
     1679#: admin/includes/apwp-debug.php:445
    16771680msgid "Disable WP_DEBUG"
    16781681msgstr "Deshabilitar WP_DEBUG"
    16791682
    1680 #: admin/includes/apwp-debug.php:450
     1683#: admin/includes/apwp-debug.php:449
    16811684msgid "Enable WP_DEBUG"
    16821685msgstr "Habilitar WP_DEBUG"
    16831686
    1684 #: admin/includes/apwp-debug.php:459
     1687#: admin/includes/apwp-debug.php:458
    16851688msgid "Debug mode set, refreshing page. . ."
    16861689msgstr "Modo de depuración configurado, página de actualización. . ."
    16871690
    1688 #: admin/includes/apwp-debug.php:463
     1691#: admin/includes/apwp-debug.php:462
    16891692msgid "Failed to set WP_DEBUG! Please try again."
    16901693msgstr "Error al establecer WP_DEBUG! Inténtalo de nuevo."
    16911694
    1692 #: admin/includes/apwp-debug.php:501
     1695#: admin/includes/apwp-debug.php:500
    16931696#, php-format
    16941697msgid ""
     
    17021705"DEL CLIPBOARD."
    17031706
    1704 #: admin/includes/apwp-debug.php:509
     1707#: admin/includes/apwp-debug.php:508
    17051708msgid ""
    17061709"You may click the button below to Enable/Disable WP_DEBUG and the WP_DEBUG "
     
    17171720"verán los errores. Utilice solo mientras se depura un problema."
    17181721
    1719 #: admin/includes/apwp-debug.php:512
     1722#: admin/includes/apwp-debug.php:511
    17201723msgid "Check this box to enable WP_DEBUG_DISPLAY."
    17211724msgstr "Marque esta casilla para habilitar WP_DEBUG_DISPLAY."
    17221725
    1723 #: admin/includes/apwp-debug.php:516
     1726#: admin/includes/apwp-debug.php:515
    17241727msgid "Enable WP_DEBUG_DISPLAY"
    17251728msgstr "Habilita WP_DEBUG_DISPLAY"
     
    17271730#: admin/includes/apwp-display-product-list.php:49
    17281731#: admin/includes/apwp-list-table-functions.php:151
    1729 #: admin/includes/apwp-list-table-functions.php:1748
     1732#: admin/includes/apwp-list-table-functions.php:1784
    17301733#: admin/includes/pro/apwp-stats-table-functions.php:25
    17311734msgid "Category"
     
    21602163msgstr "productos de variación"
    21612164
    2162 #: admin/includes/apwp-list-table-functions.php:1744
     2165#: admin/includes/apwp-list-table-functions.php:1780
    21632166#: admin/includes/pro/apwp-quick-edit.php:558
    21642167#: admin/includes/pro/class-apwp-stats-table.php:142
     
    21662169msgstr "ID"
    21672170
    2168 #: admin/includes/apwp-list-table-functions.php:1745
     2171#: admin/includes/apwp-list-table-functions.php:1781
    21692172#: admin/includes/pro/class-apwp-stats-table.php:143
    21702173msgid "Image"
    21712174msgstr "Imagen"
    21722175
    2173 #: admin/includes/apwp-list-table-functions.php:1747
     2176#: admin/includes/apwp-list-table-functions.php:1783
    21742177msgid "Type"
    21752178msgstr "Tipo"
    21762179
    2177 #: admin/includes/apwp-list-table-functions.php:1749
     2180#: admin/includes/apwp-list-table-functions.php:1785
    21782181#: admin/includes/pro/apwp-quick-edit.php:1076
    21792182msgid "Stock status"
    21802183msgstr "Estado de stock"
    21812184
    2182 #: admin/includes/apwp-list-table-functions.php:1753
     2185#: admin/includes/apwp-list-table-functions.php:1789
    21832186msgid "Sold"
    21842187msgstr "Vendido"
    21852188
    2186 #: admin/includes/apwp-list-table-functions.php:1754
     2189#: admin/includes/apwp-list-table-functions.php:1790
    21872190msgid "Sharing"
    21882191msgstr "Compartir"
    21892192
    2190 #: admin/includes/apwp-list-table-functions.php:1775
     2193#: admin/includes/apwp-list-table-functions.php:1811
    21912194#: admin/includes/pro/apwp-quick-edit.php:821
    21922195msgid "Sale dates"
     
    23162319
    23172320#: admin/includes/display-quick-start-tab.php:59
    2318 msgid ""
    2319 "Added Bulk Actions to the Product list tab. The ability to edit products "
    2320 "with bulk edit is currently being added to the plugin."
    2321 msgstr ""
    2322 "Se agregaron acciones masivas a la pestaña Lista de productos. La capacidad "
    2323 "de editar productos con edición masiva se está agregando actualmente al "
    2324 "complemento."
     2321msgid "Added button to manually reset the products to Tweet list."
     2322msgstr "Se agregó un botón para restablecer manualmente los productos a la lista de Tweet."
    23252323
    23262324#: admin/includes/display-quick-start-tab.php:60
    23272325msgid ""
    2328 "Fixed the issues with the auto poster; showing incorrect number of products, "
    2329 "re-posting the same product right after it was posted, reseting the products "
    2330 "to post list when it was not time. "
    2331 msgstr ""
    2332 "Se corrigieron los problemas con el auto poster; muestra el número "
    2333 "incorrecto de productos, vuelve a publicar el mismo producto justo después "
    2334 "de su publicación, restablece los productos a la lista de publicaciones "
    2335 "cuando no era la hora. "
    2336 
    2337 #: admin/includes/display-quick-start-tab.php:61
    2338 msgid ""
    2339 "Fixed issue when changing the auto post schedule, the screen would refresh "
    2340 "over and over."
    2341 msgstr ""
    2342 "Se solucionó el problema al cambiar la programación de publicación "
    2343 "automática, la pantalla se actualizaría una y otra vez."
     2326"Fixed a few other issues including retrieving Bitly shortlinks which had "
     2327"stopped working."
     2328msgstr ""
     2329"Se solucionaron algunos otros problemas, incluida la recuperación de enlaces "
     2330"cortos de Bitly que han dejado de funcionar."
    23442331
    23452332#: admin/includes/display-quick-start-tab.php:65
  • auto-post-woocommerce-products/trunk/languages/auto-post-woocommerce-products-fr_FR.po

    r2001944 r2002116  
    66msgid ""
    77msgstr ""
    8 "Project-Id-Version: APWCP 2.1.2.3\n"
     8"Project-Id-Version: APWCP 2.1.2.4\n"
    99"Report-Msgid-Bugs-To: [email protected]\n"
    10 "POT-Creation-Date: 2018-12-19 16:25-0600\n"
    11 "PO-Revision-Date: 2018-12-19 16:31-0600\n"
     10"POT-Creation-Date: 2018-12-27 01:01-0600\n"
     11"PO-Revision-Date: 2018-12-27 01:02-0600\n"
    1212"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1313"Language-Team: LANGUAGE <[email protected]>\n"
     
    3232msgstr "Aidez-moi"
    3333
    34 #: auto-post-woocommerce-products.php:84 admin/apwp-functions-admin.php:1216
     34#: auto-post-woocommerce-products.php:84 admin/apwp-functions-admin.php:1218
    3535msgid "Auto Post WooCommerce Products"
    3636msgstr "Auto post produits WooCommerce"
     
    7878
    7979#: admin/apwp-fs-functions.php:42 admin/apwp-fs-functions.php:174
    80 #: admin/apwp-schedule-tab.php:363 admin/apwp-settings-tab.php:60
     80#: admin/apwp-schedule-tab.php:374 admin/apwp-settings-tab.php:60
    8181#: admin/apwp-settings-tab.php:137 admin/apwp-settings-tab.php:232
    8282#: admin/apwp-settings-tab.php:283 admin/apwp-settings-tab.php:356
     
    228228msgstr "téléchargeable"
    229229
    230 #: admin/apwp-functions-admin.php:865 admin/apwp-functions-admin.php:866
    231 #: admin/auto-post-woocommerce-products-tabs.php:301
     230#: admin/apwp-functions-admin.php:867 admin/apwp-functions-admin.php:868
     231#: admin/auto-post-woocommerce-products-tabs.php:304
    232232#: admin/includes/apwp-add-social-icons.php:48
    233233msgid "ON SALE!"
    234234msgstr "EN VENTE!"
    235235
    236 #: admin/apwp-functions-admin.php:942
     236#: admin/apwp-functions-admin.php:944
    237237#: admin/auto-post-woocommerce-products-help.php:126
    238238msgid "STARTER"
    239239msgstr "ENTRÉE"
    240240
    241 #: admin/apwp-functions-admin.php:945
     241#: admin/apwp-functions-admin.php:947
    242242#: admin/auto-post-woocommerce-products-help.php:134
    243243msgid "PROFESSIONAL"
    244244msgstr "PROFESSIONNEL"
    245245
    246 #: admin/apwp-functions-admin.php:948
     246#: admin/apwp-functions-admin.php:950
    247247#: admin/auto-post-woocommerce-products-help.php:130
    248248msgid "BUSINESS"
    249249msgstr "ENTREPRISE"
    250250
    251 #: admin/apwp-functions-admin.php:951
     251#: admin/apwp-functions-admin.php:953
    252252msgid "FREE"
    253253msgstr "GRATUIT"
    254254
    255 #: admin/apwp-functions-admin.php:1203
     255#: admin/apwp-functions-admin.php:1205
    256256msgid ""
    257257"While using a LOCALHOST server, all posts will be simulated and all calls to "
     
    261261"simulées et tous les appels à Bitly.com suspendus."
    262262
    263 #: admin/apwp-functions-admin.php:1221
     263#: admin/apwp-functions-admin.php:1223
    264264msgid "WooCommerce product management and product posting to social media"
    265265msgstr "Gestion des produits WooCommerce et publication de produits sur les réseaux sociaux"
    266266
    267 #: admin/apwp-functions-admin.php:1223
     267#: admin/apwp-functions-admin.php:1225
    268268msgid "version"
    269269msgstr "version"
    270270
    271 #: admin/apwp-functions-admin.php:1227
     271#: admin/apwp-functions-admin.php:1229
    272272msgid "by"
    273273msgstr "par"
    274274
    275 #: admin/apwp-functions-admin.php:1239
     275#: admin/apwp-functions-admin.php:1241
    276276#, php-format
    277277msgid ""
     
    282282"choisir un hashtag</a>."
    283283
    284 #: admin/apwp-functions-admin.php:1246
     284#: admin/apwp-functions-admin.php:1248
    285285#, php-format
    286286msgid ""
     
    291291"Comment utiliser efficacement les hashtags sans être ennuyeux</a>."
    292292
    293 #: admin/apwp-functions-admin.php:1253
     293#: admin/apwp-functions-admin.php:1255
    294294msgid ""
    295295"The hashtag (#) has become one of the most valuable assets in any modern "
     
    299299"campagne marketing moderne."
    300300
    301 #: admin/apwp-functions-admin.php:1254
     301#: admin/apwp-functions-admin.php:1256
    302302msgid ""
    303303"The brands that create the most effective hashtags and employ them well, "
     
    307307"récoltent les bénéfices sur Twitter."
    308308
    309 #: admin/apwp-functions-admin.php:1255
     309#: admin/apwp-functions-admin.php:1257
    310310msgid ""
    311311"Those who haven&apos;t invested the time and thought carefully about their "
     
    315315"manière dont ils seront utilisés obtiennent des résultats prévisibles."
    316316
    317 #: admin/apwp-functions-admin.php:1256
     317#: admin/apwp-functions-admin.php:1258
    318318msgid ""
    319319". . .good hashtags should be memorable, so that your customers will easily "
     
    323323"puissent facilement les rappeler."
    324324
    325 #: admin/apwp-functions-admin.php:1257
     325#: admin/apwp-functions-admin.php:1259
    326326msgid ""
    327327"In practice, hashtags are used to categorize social media content into "
     
    331331"sociaux en listes facilement navigables."
    332332
    333 #: admin/apwp-functions-admin.php:1258
     333#: admin/apwp-functions-admin.php:1260
    334334msgid ""
    335335"By including the #[INSERT KEYWORD] in a tweet, it then becomes visible "
     
    339339"visible en ligne avec les autres posts utilisant ce même hashtag."
    340340
    341 #: admin/apwp-functions-admin.php:1259
     341#: admin/apwp-functions-admin.php:1261
    342342msgid ""
    343343"Sometimes, the best way to use hashtags is to find ones that already exist."
     
    346346"existent déjà."
    347347
    348 #: admin/apwp-functions-admin.php:1308
     348#: admin/apwp-functions-admin.php:1310
    349349msgid "Thank you for using our plugin!"
    350350msgstr "Merci d'utiliser notre plugin!"
    351351
    352 #: admin/apwp-functions-admin.php:1311
     352#: admin/apwp-functions-admin.php:1313
    353353msgid "You are currently utilizing a FREE Trial period."
    354354msgstr "Vous utilisez actuellement une période d'essai GRATUITE."
    355355
    356 #: admin/apwp-functions-admin.php:1314
     356#: admin/apwp-functions-admin.php:1316
    357357#, php-format
    358358msgid ""
     
    365365"9733;&#9733;</a> évaluation!"
    366366
    367 #: admin/apwp-functions-admin.php:1328
     367#: admin/apwp-functions-admin.php:1330
    368368#, php-format
    369369msgid ""
     
    375375"Faites-nous le savoir!</a>"
    376376
    377 #: admin/apwp-functions-admin.php:1342
     377#: admin/apwp-functions-admin.php:1344
    378378#, php-format
    379379msgid ""
     
    384384"a href=\"%s\" title=\"page de compte\" target=\"_blank\">page de compte</a>."
    385385
    386 #: admin/apwp-functions-admin.php:1361
     386#: admin/apwp-functions-admin.php:1363
    387387#, php-format
    388388msgid ""
     
    394394"."
    395395
    396 #: admin/apwp-functions-admin.php:1380
     396#: admin/apwp-functions-admin.php:1382
    397397#, php-format
    398398msgid ""
     
    404404"Afficher tous les plans </a>."
    405405
    406 #: admin/apwp-functions-admin.php:1400
     406#: admin/apwp-functions-admin.php:1402
    407407msgid "Success!"
    408408msgstr "Succès!"
    409409
    410 #: admin/apwp-functions-admin.php:1411
     410#: admin/apwp-functions-admin.php:1413
    411411msgid "Auto Post INFORMATION:"
    412412msgstr "Informations de publication automatique:"
    413413
    414 #: admin/apwp-functions-admin.php:1422
     414#: admin/apwp-functions-admin.php:1424
    415415msgid "Auto Post WARNING:"
    416416msgstr "Auto Post AVERTISSEMENT:"
    417417
    418 #: admin/apwp-functions-admin.php:1433
     418#: admin/apwp-functions-admin.php:1435
    419419msgid "WOOCOMMERCE ERROR:"
    420420msgstr "ERREUR DE WOOCOMMERCE:"
    421421
    422 #: admin/apwp-functions-admin.php:1444
     422#: admin/apwp-functions-admin.php:1446
    423423msgid "APWCP ERROR:"
    424424msgstr "APWCP ERROR:"
    425425
    426 #: admin/apwp-functions-admin.php:1455
     426#: admin/apwp-functions-admin.php:1457
    427427msgid "Security ERROR:"
    428428msgstr "Erreur de sécurité:"
    429429
    430 #: admin/apwp-functions-admin.php:1465
     430#: admin/apwp-functions-admin.php:1467
    431431#: admin/includes/pro/apwp-quick-edit.php:34
    432432msgid "Product Edit ERROR:"
    433433msgstr "ERREUR d'édition du produit:"
    434434
    435 #: admin/apwp-functions-admin.php:1590
     435#: admin/apwp-functions-admin.php:1592
    436436msgid "Pause schedule"
    437437msgstr "Calendrier de pause"
    438438
    439 #: admin/apwp-functions-admin.php:1594
     439#: admin/apwp-functions-admin.php:1596
    440440msgid "Schedule is disabled"
    441441msgstr "L'horaire est désactivé"
    442442
    443 #: admin/apwp-functions-admin.php:1598
     443#: admin/apwp-functions-admin.php:1600
    444444#: admin/includes/class-apwp-cron-functions.php:116
    445445msgid "Every 24 hours"
    446446msgstr "Toutes les 24 heures"
    447447
    448 #: admin/apwp-functions-admin.php:1602
     448#: admin/apwp-functions-admin.php:1604
    449449#: admin/includes/class-apwp-cron-functions.php:121
    450450msgid "Every 12 hours"
    451451msgstr "Toutes les 12 heures"
    452452
    453 #: admin/apwp-functions-admin.php:1606
     453#: admin/apwp-functions-admin.php:1608
    454454#: admin/includes/class-apwp-cron-functions.php:126
    455455msgid "Every 8 hours"
    456456msgstr "Toutes les 8 heures"
    457457
    458 #: admin/apwp-functions-admin.php:1610
     458#: admin/apwp-functions-admin.php:1612
    459459#: admin/includes/class-apwp-cron-functions.php:131
    460460msgid "Every 7 hours"
    461461msgstr "Toutes les 7 heures"
    462462
    463 #: admin/apwp-functions-admin.php:1614
     463#: admin/apwp-functions-admin.php:1616
    464464#: admin/includes/class-apwp-cron-functions.php:144
    465465msgid "Every 6 hours"
    466466msgstr "Toutes les 6 heures"
    467467
    468 #: admin/apwp-functions-admin.php:1618
     468#: admin/apwp-functions-admin.php:1620
    469469#: admin/includes/class-apwp-cron-functions.php:154
    470470msgid "Every 5 hours"
    471471msgstr "Toutes les 5 heures"
    472472
    473 #: admin/apwp-functions-admin.php:1622
     473#: admin/apwp-functions-admin.php:1624
    474474#: admin/includes/class-apwp-cron-functions.php:149
    475475msgid "Every 4 hours"
    476476msgstr "Toutes les 4 heures"
    477477
    478 #: admin/apwp-functions-admin.php:1626
     478#: admin/apwp-functions-admin.php:1628
    479479#: admin/includes/class-apwp-cron-functions.php:163
    480480msgid "Every 3 hours"
    481481msgstr "Toutes les 3 heures"
    482482
    483 #: admin/apwp-functions-admin.php:1630
     483#: admin/apwp-functions-admin.php:1632
    484484#: admin/includes/class-apwp-cron-functions.php:168
    485485msgid "Every 2 hours"
    486486msgstr "Toutes les 2 heures"
    487487
    488 #: admin/apwp-functions-admin.php:1634
     488#: admin/apwp-functions-admin.php:1636
    489489#: admin/includes/class-apwp-cron-functions.php:177
    490490msgid "Every hour"
    491491msgstr "Toutes les heures"
    492492
    493 #: admin/apwp-functions-admin.php:1638
     493#: admin/apwp-functions-admin.php:1640
    494494#: admin/includes/class-apwp-cron-functions.php:182
    495495msgid "Every 30 minutes"
    496496msgstr "Toutes les 30 minutes"
    497497
    498 #: admin/apwp-functions-admin.php:1667
     498#: admin/apwp-functions-admin.php:1669
    499499msgid "End current Sale"
    500500msgstr "Fin de la vente en cours"
    501501
    502 #: admin/apwp-functions-admin.php:1668
     502#: admin/apwp-functions-admin.php:1670
    503503msgid "Cancel"
    504504msgstr "Annuler"
    505505
    506 #: admin/apwp-functions-admin.php:1669
     506#: admin/apwp-functions-admin.php:1671
    507507msgid "Delete all products"
    508508msgstr "Supprimer tous les produits"
    509509
    510 #: admin/apwp-functions-admin.php:1670
     510#: admin/apwp-functions-admin.php:1672
    511511msgid "Are you sure you want to permanently delete"
    512512msgstr "Êtes-vous sûr de vouloir supprimer définitivement"
    513513
    514 #: admin/apwp-functions-admin.php:1671
     514#: admin/apwp-functions-admin.php:1673
    515515msgid ""
    516516"This procedure cannot be reversed and if this is a variable product then all "
     
    520520"variable, toutes les variantes seront également supprimées!"
    521521
    522 #: admin/apwp-functions-admin.php:1672
     522#: admin/apwp-functions-admin.php:1674
    523523msgid "Are you sure you want to move this item to the Trash?"
    524524msgstr "Êtes-vous sûr de vouloir déplacer cet objet dans la corbeille?"
    525525
    526 #: admin/apwp-functions-admin.php:1673
     526#: admin/apwp-functions-admin.php:1675
    527527#: admin/includes/apwp-list-table-functions.php:1050
    528528msgid "Auto sharing enabled"
    529529msgstr "Partage automatique activé"
    530530
    531 #: admin/apwp-functions-admin.php:1674
     531#: admin/apwp-functions-admin.php:1676
    532532#: admin/includes/apwp-list-table-functions.php:1051
    533533msgid "Not auto shared"
    534534msgstr "Pas auto partagé"
    535535
    536 #: admin/apwp-functions-admin.php:1675
     536#: admin/apwp-functions-admin.php:1677
    537537#: admin/includes/apwp-product-list-class.php:375
    538538msgid "Product is featured"
    539539msgstr "Le produit est en vedette"
    540540
    541 #: admin/apwp-functions-admin.php:1676
     541#: admin/apwp-functions-admin.php:1678
    542542#: admin/includes/apwp-product-list-class.php:376
    543543msgid "Product is not featured"
    544544msgstr "Le produit n'est pas présenté"
    545545
    546 #: admin/apwp-functions-admin.php:1677
     546#: admin/apwp-functions-admin.php:1679
    547547#: admin/includes/apwp-list-table-functions.php:1112
    548548msgid "Add product to click data statistics"
    549549msgstr "Ajouter un produit à la statistique de données de clic"
    550550
    551 #: admin/apwp-functions-admin.php:1678
     551#: admin/apwp-functions-admin.php:1680
    552552#: admin/includes/apwp-list-table-functions.php:1113
    553553msgid "Remove product from click data statistics"
    554554msgstr "Supprimer le produit des statistiques de données sur les clics"
    555555
    556 #: admin/apwp-functions-admin.php:1679
     556#: admin/apwp-functions-admin.php:1681
    557557msgid ""
    558558"You do not have permisson to perform this action. Please ask your Admin."
     
    561561"à votre administrateur."
    562562
    563 #: admin/apwp-functions-admin.php:1680
     563#: admin/apwp-functions-admin.php:1682
    564564msgid "WordPress security check failed. Please try again."
    565565msgstr "La vérification de sécurité de WordPress a échoué. Veuillez réessayer."
    566566
    567 #: admin/apwp-functions-admin.php:1681
     567#: admin/apwp-functions-admin.php:1683
    568568msgid "An error has occured. Please try again."
    569569msgstr "Une erreur est survenue. Veuillez réessayer."
    570570
    571 #: admin/apwp-schedule-tab.php:30
     571#: admin/apwp-schedule-tab.php:32
    572572msgid "Schedule your Twitter auto posts"
    573573msgstr "Planifiez vos messages automatiques Twitter"
    574574
    575 #: admin/apwp-schedule-tab.php:64
     575#: admin/apwp-schedule-tab.php:76
    576576msgid "Waiting on CRON scheduler. Information will be updated soon."
    577577msgstr "En attente du planificateur CRON. L'information sera mise à jour bientôt."
    578578
    579 #: admin/apwp-schedule-tab.php:73
     579#: admin/apwp-schedule-tab.php:85
    580580msgid ""
    581581"The last auto post failed. Please see the APWP debug log on the Status tab."
     
    584584"débogage APWP sur l'onglet État."
    585585
    586 #: admin/apwp-schedule-tab.php:99
     586#: admin/apwp-schedule-tab.php:110
    587587msgid "Unknown - please set a new schedule."
    588588msgstr "Inconnu - veuillez définir un nouveau calendrier."
    589589
    590 #: admin/apwp-schedule-tab.php:103
     590#: admin/apwp-schedule-tab.php:114
    591591msgid "Last auto Tweet information"
    592592msgstr "Dernière auto Tweet information"
    593593
    594 #: admin/apwp-schedule-tab.php:110
     594#: admin/apwp-schedule-tab.php:121
    595595msgid "While using a LOCALHOST server, all posts will be <em>simulated</em>."
    596596msgstr "Lors de l'utilisation d'un serveur LOCALHOST, tous les messages seront <em>simulés</em>."
    597597
    598 #: admin/apwp-schedule-tab.php:121
     598#: admin/apwp-schedule-tab.php:132
    599599msgid "Posting schedule:"
    600600msgstr "Calendrier d'affichage:"
    601601
    602 #: admin/apwp-schedule-tab.php:130
     602#: admin/apwp-schedule-tab.php:141
    603603msgid "Next post:"
    604604msgstr "Article suivant:"
    605605
    606 #: admin/apwp-schedule-tab.php:138
     606#: admin/apwp-schedule-tab.php:149
    607607msgid "Last post:"
    608608msgstr "Dernier commentaire:"
    609609
    610 #: admin/apwp-schedule-tab.php:145
     610#: admin/apwp-schedule-tab.php:156
    611611msgid "Product ID#:"
    612612msgstr "Numéro de produit:"
    613613
    614 #: admin/apwp-schedule-tab.php:151
    615 #: admin/includes/apwp-list-table-functions.php:1746
     614#: admin/apwp-schedule-tab.php:162
     615#: admin/includes/apwp-list-table-functions.php:1782
    616616#: admin/includes/pro/apwp-quick-edit.php:602
    617617msgid "Title"
    618618msgstr "Titre"
    619619
    620 #: admin/apwp-schedule-tab.php:157
     620#: admin/apwp-schedule-tab.php:168
    621621msgid "Post content:"
    622622msgstr "Publier un contenu:"
    623623
    624 #: admin/apwp-schedule-tab.php:166
     624#: admin/apwp-schedule-tab.php:177
    625625msgid "Hashtags used"
    626626msgstr "Hashtags utilisés"
    627627
    628 #: admin/apwp-schedule-tab.php:175
    629 #: admin/auto-post-woocommerce-products-tabs.php:363
     628#: admin/apwp-schedule-tab.php:186
     629#: admin/auto-post-woocommerce-products-tabs.php:366
    630630msgid "URL"
    631631msgstr "URL"
    632632
    633 #: admin/apwp-schedule-tab.php:186
     633#: admin/apwp-schedule-tab.php:197
    634634#: admin/includes/pro/class-apwp-stats-table.php:360
    635635msgid "Share to social media"
    636636msgstr "Partager sur les médias sociaux"
    637637
    638 #: admin/apwp-schedule-tab.php:209
     638#: admin/apwp-schedule-tab.php:220
    639639msgid "Set your schedule"
    640640msgstr "Définir votre horaire"
    641641
    642 #: admin/apwp-schedule-tab.php:212
     642#: admin/apwp-schedule-tab.php:223
    643643msgid "Schedule when your products will be posted to Twitter."
    644644msgstr "Planifiez le moment où vos produits seront publiés sur Twitter."
    645645
    646 #: admin/apwp-schedule-tab.php:284
     646#: admin/apwp-schedule-tab.php:295
    647647msgid "How often would you like to auto post a product?"
    648648msgstr "À quelle fréquence souhaitez-vous poster automatiquement un produit?"
    649649
    650 #: admin/apwp-schedule-tab.php:288
     650#: admin/apwp-schedule-tab.php:299
    651651msgid ""
    652652"Select how often you would like to automatically post a product to "
     
    656656"un produit à <em>Twitter</em> et enregistrez-le."
    657657
    658 #: admin/apwp-schedule-tab.php:350 admin/includes/pro/apwp-quick-edit.php:102
     658#: admin/apwp-schedule-tab.php:361 admin/includes/pro/apwp-quick-edit.php:102
    659659msgid "Save changes"
    660660msgstr "Sauvegarder les modifications"
    661661
    662 #: admin/apwp-schedule-tab.php:354
     662#: admin/apwp-schedule-tab.php:365
    663663msgid "Schedule saved. Posting Tweet. . ."
    664664msgstr "Calendrier enregistré. Affichage de Tweet. . ."
    665665
    666 #: admin/apwp-schedule-tab.php:357
    667 #| msgid "Disabled CRON schedule. . ."
     666#: admin/apwp-schedule-tab.php:368
    668667msgid "Disabling CRON schedule. . ."
    669668msgstr "Désactiver la planification CRON. . ."
    670669
    671 #: admin/apwp-schedule-tab.php:360
     670#: admin/apwp-schedule-tab.php:371
    672671msgid "Please select a schedule other than the one already set."
    673672msgstr "Veuillez sélectionner un autre programme que celui déjà défini."
    674673
    675 #: admin/apwp-schedule-tab.php:371
     674#: admin/apwp-schedule-tab.php:382
    676675#, php-format
    677676msgid ""
     
    682681">CIL Creations</a>"
    683682
    684 #: admin/apwp-schedule-tab.php:379
     683#: admin/apwp-schedule-tab.php:390
    685684msgid ""
    686685"If you have fewer than 50 products, it is recommended to set your posting "
     
    10351034msgstr "Consultez notre <a href=\"%s\" target=\"_blank\">politique de confidentialité</a>."
    10361035
    1037 #: admin/apwp-woocommerce-tab.php:25
     1036#: admin/apwp-woocommerce-tab.php:26
    10381037msgid "WooCommerce product categories"
    10391038msgstr "Catégories de produits WooCommerce"
    10401039
    1041 #: admin/apwp-woocommerce-tab.php:45
     1040#: admin/apwp-woocommerce-tab.php:44
    10421041msgid "Current Auto Posting Data"
    10431042msgstr "Données actuelles d'enregistrement automatique"
    10441043
    1045 #: admin/apwp-woocommerce-tab.php:52
     1044#: admin/apwp-woocommerce-tab.php:51
    10461045msgid "Product to Tweet"
    10471046msgid_plural "Products to Tweet"
     
    10491048msgstr[1] "Produits à tweeter"
    10501049
    1051 #: admin/apwp-woocommerce-tab.php:58
     1050#: admin/apwp-woocommerce-tab.php:57
    10521051#: admin/includes/apwp-dashboard-widget.php:159
    10531052msgid "Scheduled to Tweet"
    10541053msgstr "Prévu pour Tweet"
    10551054
    1056 #: admin/apwp-woocommerce-tab.php:66
     1055#: admin/apwp-woocommerce-tab.php:65
    10571056msgid ""
    10581057"These figures are automatically updated when you make any changes to a "
     
    10641063"supprimant un produit dans votre inventaire."
    10651064
    1066 #: admin/apwp-woocommerce-tab.php:69
     1065#: admin/apwp-woocommerce-tab.php:68
    10671066msgid ""
    10681067"<b>NOTE:</b> Any changes made to a product listing are reflected when the "
     
    10751074"moment de la publication."
    10761075
    1077 #: admin/apwp-woocommerce-tab.php:91
     1076#: admin/apwp-woocommerce-tab.php:73
     1077msgid "Manually reset Products to Tweet list"
     1078msgstr "Réinitialiser manuellement les produits dans la liste Tweet"
     1079
     1080#: admin/apwp-woocommerce-tab.php:93
    10781081msgid "Select which categories to use when auto posting products to Twitter."
    10791082msgstr "Sélectionnez les catégories à utiliser lors de la publication automatique de produits sur Twitter."
    10801083
    1081 #: admin/apwp-woocommerce-tab.php:115
     1084#: admin/apwp-woocommerce-tab.php:117
    10821085msgid "Select your product categories"
    10831086msgstr "Sélectionnez vos catégories de produits"
    10841087
    1085 #: admin/apwp-woocommerce-tab.php:119
     1088#: admin/apwp-woocommerce-tab.php:121
    10861089msgid ""
    10871090"The categories you select will allow all products within those categories to "
     
    10911094"catégories d’être automatiquement enregistrés dans <em>Twitter</em>."
    10921095
    1093 #: admin/apwp-woocommerce-tab.php:154
     1096#: admin/apwp-woocommerce-tab.php:156
    10941097#: admin/includes/apwp-list-table-functions.php:144
    10951098#: admin/includes/apwp-list-table-functions.php:156
     
    10991102msgstr "Tout sélectionner"
    11001103
    1101 #: admin/apwp-woocommerce-tab.php:157
     1104#: admin/apwp-woocommerce-tab.php:159
    11021105msgid "Select none"
    11031106msgstr "Ne rien sélectionner"
    11041107
    1105 #: admin/apwp-woocommerce-tab.php:161
     1108#: admin/apwp-woocommerce-tab.php:163
    11061109msgid "Please select at least one category."
    11071110msgstr "Veuillez sélectionner au moins une catégorie."
     
    14081411msgstr "État des produits WooCommerce à publication automatique"
    14091412
    1410 #: admin/auto-post-woocommerce-products-settings.php:366
    1411 #: admin/auto-post-woocommerce-products-settings.php:383
     1413#: admin/auto-post-woocommerce-products-settings.php:361
     1414#: admin/auto-post-woocommerce-products-settings.php:378
    14121415msgid "Products per page"
    14131416msgstr "Produits par page"
     
    14411444msgstr "Statistiques"
    14421445
    1443 #: admin/auto-post-woocommerce-products-tabs.php:199
     1446#: admin/auto-post-woocommerce-products-tabs.php:202
    14441447msgid "Product Sharing"
    14451448msgstr "Partage de produit"
    14461449
    1447 #: admin/auto-post-woocommerce-products-tabs.php:202
     1450#: admin/auto-post-woocommerce-products-tabs.php:205
    14481451msgid "Share products to your social media accounts."
    14491452msgstr "Partagez des produits sur vos comptes de médias sociaux."
    14501453
    1451 #: admin/auto-post-woocommerce-products-tabs.php:240
     1454#: admin/auto-post-woocommerce-products-tabs.php:243
    14521455#: admin/includes/pro/apwp-quick-edit.php:72
    14531456msgid "Previous page"
    14541457msgstr "Page précédente"
    14551458
    1456 #: admin/auto-post-woocommerce-products-tabs.php:245
     1459#: admin/auto-post-woocommerce-products-tabs.php:248
    14571460msgid ""
    14581461"Click one of the social media buttons below to begin sharing your product. "
     
    14651468"message."
    14661469
    1467 #: admin/auto-post-woocommerce-products-tabs.php:275
     1470#: admin/auto-post-woocommerce-products-tabs.php:278
    14681471msgid "none"
    14691472msgstr "aucun"
    14701473
    1471 #: admin/auto-post-woocommerce-products-tabs.php:302
     1474#: admin/auto-post-woocommerce-products-tabs.php:305
    14721475#: admin/includes/apwp-add-social-icons.php:49
    14731476msgid "discount"
    14741477msgstr "remise"
    14751478
    1476 #: admin/auto-post-woocommerce-products-tabs.php:331
     1479#: admin/auto-post-woocommerce-products-tabs.php:334
    14771480msgid "not available"
    14781481msgstr "indisponible"
    14791482
    1480 #: admin/auto-post-woocommerce-products-tabs.php:334
     1483#: admin/auto-post-woocommerce-products-tabs.php:337
    14811484msgid "No description available"
    14821485msgstr "Pas de description disponible"
    14831486
    1484 #: admin/auto-post-woocommerce-products-tabs.php:341
     1487#: admin/auto-post-woocommerce-products-tabs.php:344
    14851488msgid "Click any details to copy product information to the clipboard."
    14861489msgstr "Cliquez sur les détails pour copier les informations du produit dans le presse-papiers."
    14871490
    1488 #: admin/auto-post-woocommerce-products-tabs.php:355
     1491#: admin/auto-post-woocommerce-products-tabs.php:358
    14891492msgid "Description"
    14901493msgstr "La description"
    14911494
    1492 #: admin/auto-post-woocommerce-products-tabs.php:359
     1495#: admin/auto-post-woocommerce-products-tabs.php:362
    14931496#: admin/includes/pro/apwp-quick-edit.php:780
    14941497msgid "Hashtags"
    14951498msgstr "Hashtags"
    14961499
    1497 #: admin/auto-post-woocommerce-products-tabs.php:369
     1500#: admin/auto-post-woocommerce-products-tabs.php:372
    14981501msgid "Bitly short link"
    14991502msgstr "Bitly short link"
    15001503
    1501 #: admin/auto-post-woocommerce-products-tabs.php:374
     1504#: admin/auto-post-woocommerce-products-tabs.php:377
    15021505msgid "This is a parent product."
    15031506msgstr "Ceci est un produit parent."
    15041507
    1505 #: admin/auto-post-woocommerce-products-tabs.php:379
     1508#: admin/auto-post-woocommerce-products-tabs.php:382
    15061509msgid "Product variation:"
    15071510msgstr "Variation du produit:"
    15081511
    1509 #: admin/auto-post-woocommerce-products-tabs.php:386
    1510 #: admin/includes/apwp-list-table-functions.php:1750
     1512#: admin/auto-post-woocommerce-products-tabs.php:389
     1513#: admin/includes/apwp-list-table-functions.php:1786
    15111514#: admin/includes/pro/apwp-quick-edit.php:664
    15121515msgid "Regular price"
    15131516msgstr "Prix habituel"
    15141517
    1515 #: admin/auto-post-woocommerce-products-tabs.php:390
    1516 #: admin/includes/apwp-list-table-functions.php:1751
     1518#: admin/auto-post-woocommerce-products-tabs.php:393
     1519#: admin/includes/apwp-list-table-functions.php:1787
    15171520#: admin/includes/pro/apwp-quick-edit.php:678
    15181521msgid "Sale price"
    15191522msgstr "Prix de vente"
    15201523
    1521 #: admin/auto-post-woocommerce-products-tabs.php:394
    1522 #: admin/includes/apwp-list-table-functions.php:1752
     1524#: admin/auto-post-woocommerce-products-tabs.php:397
     1525#: admin/includes/apwp-list-table-functions.php:1788
    15231526#: admin/includes/pro/apwp-quick-edit.php:692
    15241527msgid "Current price"
    15251528msgstr "Prix actuel"
    15261529
    1527 #: admin/auto-post-woocommerce-products-tabs.php:405
     1530#: admin/auto-post-woocommerce-products-tabs.php:408
    15281531msgid "Discount tag line"
    15291532msgstr "Ligne de balise de remise"
     
    15411544"span> pour publier sur les médias sociaux."
    15421545
    1543 #: admin/includes/apwp-check-setup.php:101
     1546#: admin/includes/apwp-check-setup.php:105
    15441547#, php-format
    15451548msgid ""
     
    15521555"knowledgebase/enable-curl-via-the-php-ini-file/</a>"
    15531556
    1554 #: admin/includes/apwp-check-setup.php:110
     1557#: admin/includes/apwp-check-setup.php:114
    15551558msgid ""
    15561559"Please set a schedule to enable auto posting to Twitter, or disable auto "
     
    15601563"désactivez l'envoi automatique sur l'onglet TWITTER."
    15611564
    1562 #: admin/includes/apwp-check-setup.php:140
     1565#: admin/includes/apwp-check-setup.php:144
    15631566msgid ""
    15641567"Please check your Twitter and Bitly codes on the Twitter tab. There are "
     
    15681571"des codes manquants."
    15691572
    1570 #: admin/includes/apwp-check-setup.php:156
     1573#: admin/includes/apwp-check-setup.php:160
    15711574msgid "Please select at least one product category on the CATEGORY TAB."
    15721575msgstr "Veuillez sélectionner au moins une catégorie de produit dans l'onglet CATÉGORIE."
     
    16621665msgstr "Dernière version installée."
    16631666
    1664 #: admin/includes/apwp-debug.php:26
     1667#: admin/includes/apwp-debug.php:25
    16651668msgid "APWCP status page"
    16661669msgstr "Page d'état APWCP"
    16671670
    1668 #: admin/includes/apwp-debug.php:34
     1671#: admin/includes/apwp-debug.php:33
    16691672msgid "APWCP status information"
    16701673msgstr "Informations sur le statut du programme APWCP"
    16711674
    1672 #: admin/includes/apwp-debug.php:38
     1675#: admin/includes/apwp-debug.php:37
    16731676msgid "Current settings and values"
    16741677msgstr "Paramètres et valeurs actuels"
    16751678
    1676 #: admin/includes/apwp-debug.php:177
     1679#: admin/includes/apwp-debug.php:176
    16771680msgid "Log Files"
    16781681msgstr "Fichiers de log"
    16791682
    1680 #: admin/includes/apwp-debug.php:254
     1683#: admin/includes/apwp-debug.php:253
    16811684msgid "Copy data to clipboard"
    16821685msgstr "Copier des données dans le presse-papier"
    16831686
    1684 #: admin/includes/apwp-debug.php:446
     1687#: admin/includes/apwp-debug.php:445
    16851688msgid "Disable WP_DEBUG"
    16861689msgstr "Désactiver WP_DEBUG"
    16871690
    1688 #: admin/includes/apwp-debug.php:450
     1691#: admin/includes/apwp-debug.php:449
    16891692msgid "Enable WP_DEBUG"
    16901693msgstr "Activer WP_DEBUG"
    16911694
    1692 #: admin/includes/apwp-debug.php:459
     1695#: admin/includes/apwp-debug.php:458
    16931696msgid "Debug mode set, refreshing page. . ."
    16941697msgstr "Mode de débogage défini, page de rafraîchissement. . ."
    16951698
    1696 #: admin/includes/apwp-debug.php:463
     1699#: admin/includes/apwp-debug.php:462
    16971700msgid "Failed to set WP_DEBUG! Please try again."
    16981701msgstr "Impossible de définir WP_DEBUG! Veuillez réessayer."
    16991702
    1700 #: admin/includes/apwp-debug.php:501
     1703#: admin/includes/apwp-debug.php:500
    17011704#, php-format
    17021705msgid ""
     
    17101713"CLIPBOARD."
    17111714
    1712 #: admin/includes/apwp-debug.php:509
     1715#: admin/includes/apwp-debug.php:508
    17131716msgid ""
    17141717"You may click the button below to Enable/Disable WP_DEBUG and the WP_DEBUG "
     
    17261729"uniquement lors du débogage d'un problème."
    17271730
    1728 #: admin/includes/apwp-debug.php:512
     1731#: admin/includes/apwp-debug.php:511
    17291732msgid "Check this box to enable WP_DEBUG_DISPLAY."
    17301733msgstr "Cochez cette case pour activer WP_DEBUG_DISPLAY."
    17311734
    1732 #: admin/includes/apwp-debug.php:516
     1735#: admin/includes/apwp-debug.php:515
    17331736msgid "Enable WP_DEBUG_DISPLAY"
    17341737msgstr "Activer WP_DEBUG_DISPLAY"
     
    17361739#: admin/includes/apwp-display-product-list.php:49
    17371740#: admin/includes/apwp-list-table-functions.php:151
    1738 #: admin/includes/apwp-list-table-functions.php:1748
     1741#: admin/includes/apwp-list-table-functions.php:1784
    17391742#: admin/includes/pro/apwp-stats-table-functions.php:25
    17401743msgid "Category"
     
    21692172msgstr ": produits de variation"
    21702173
    2171 #: admin/includes/apwp-list-table-functions.php:1744
     2174#: admin/includes/apwp-list-table-functions.php:1780
    21722175#: admin/includes/pro/apwp-quick-edit.php:558
    21732176#: admin/includes/pro/class-apwp-stats-table.php:142
     
    21752178msgstr "ID"
    21762179
    2177 #: admin/includes/apwp-list-table-functions.php:1745
     2180#: admin/includes/apwp-list-table-functions.php:1781
    21782181#: admin/includes/pro/class-apwp-stats-table.php:143
    21792182msgid "Image"
    21802183msgstr "Image"
    21812184
    2182 #: admin/includes/apwp-list-table-functions.php:1747
     2185#: admin/includes/apwp-list-table-functions.php:1783
    21832186msgid "Type"
    21842187msgstr "Sorte"
    21852188
    2186 #: admin/includes/apwp-list-table-functions.php:1749
     2189#: admin/includes/apwp-list-table-functions.php:1785
    21872190#: admin/includes/pro/apwp-quick-edit.php:1076
    21882191msgid "Stock status"
    21892192msgstr "État des stocks"
    21902193
    2191 #: admin/includes/apwp-list-table-functions.php:1753
     2194#: admin/includes/apwp-list-table-functions.php:1789
    21922195msgid "Sold"
    21932196msgstr "Vendu"
    21942197
    2195 #: admin/includes/apwp-list-table-functions.php:1754
     2198#: admin/includes/apwp-list-table-functions.php:1790
    21962199msgid "Sharing"
    21972200msgstr "Participation"
    21982201
    2199 #: admin/includes/apwp-list-table-functions.php:1775
     2202#: admin/includes/apwp-list-table-functions.php:1811
    22002203#: admin/includes/pro/apwp-quick-edit.php:821
    22012204msgid "Sale dates"
     
    23252328
    23262329#: admin/includes/display-quick-start-tab.php:59
    2327 msgid ""
    2328 "Added Bulk Actions to the Product list tab. The ability to edit products "
    2329 "with bulk edit is currently being added to the plugin."
    2330 msgstr ""
    2331 "Ajout d'actions en masse à l'onglet de la liste de produits. La possibilité "
    2332 "de modifier des produits en bloc est en cours d’ajout au plugin."
     2330msgid "Added button to manually reset the products to Tweet list."
     2331msgstr "Bouton ajouté pour réinitialiser manuellement les produits à la liste de Tweet."
    23332332
    23342333#: admin/includes/display-quick-start-tab.php:60
    23352334msgid ""
    2336 "Fixed the issues with the auto poster; showing incorrect number of products, "
    2337 "re-posting the same product right after it was posted, reseting the products "
    2338 "to post list when it was not time. "
    2339 msgstr ""
    2340 "Correction des problèmes avec l'affiche automatique; affichage d'un nombre "
    2341 "incorrect de produits, ré-affichage du même produit juste après son "
    2342 "affichage, réaffichage des produits pour afficher la liste lorsqu'il n'était "
    2343 "pas temps"
    2344 
    2345 #: admin/includes/display-quick-start-tab.php:61
    2346 msgid ""
    2347 "Fixed issue when changing the auto post schedule, the screen would refresh "
    2348 "over and over."
    2349 msgstr ""
    2350 "Problème résolu lors de la modification du calendrier de publication "
    2351 "automatique, l'écran s'actualisait sans cesse."
     2335"Fixed a few other issues including retrieving Bitly shortlinks which had "
     2336"stopped working."
     2337msgstr ""
     2338"Correction de quelques autres problèmes, notamment la récupération des liens "
     2339"courts Bitly qui ne fonctionnaient plus."
    23522340
    23532341#: admin/includes/display-quick-start-tab.php:65
  • auto-post-woocommerce-products/trunk/languages/auto-post-woocommerce-products-pt_PT.po

    r2001944 r2002116  
    66msgid ""
    77msgstr ""
    8 "Project-Id-Version: APWCP 2.1.2.3\n"
     8"Project-Id-Version: APWCP 2.1.2.4\n"
    99"Report-Msgid-Bugs-To: [email protected]\n"
    10 "POT-Creation-Date: 2018-12-19 16:32-0600\n"
    11 "PO-Revision-Date: 2018-12-19 16:39-0600\n"
     10"POT-Creation-Date: 2018-12-27 01:03-0600\n"
     11"PO-Revision-Date: 2018-12-27 01:04-0600\n"
    1212"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1313"Language-Team: LANGUAGE <[email protected]>\n"
     
    3232msgstr "Socorro"
    3333
    34 #: auto-post-woocommerce-products.php:84 admin/apwp-functions-admin.php:1216
     34#: auto-post-woocommerce-products.php:84 admin/apwp-functions-admin.php:1218
    3535msgid "Auto Post WooCommerce Products"
    3636msgstr "Produtos Auto Post WooCommerce"
     
    7878
    7979#: admin/apwp-fs-functions.php:42 admin/apwp-fs-functions.php:174
    80 #: admin/apwp-schedule-tab.php:363 admin/apwp-settings-tab.php:60
     80#: admin/apwp-schedule-tab.php:374 admin/apwp-settings-tab.php:60
    8181#: admin/apwp-settings-tab.php:137 admin/apwp-settings-tab.php:232
    8282#: admin/apwp-settings-tab.php:283 admin/apwp-settings-tab.php:356
     
    226226msgstr "descarregável"
    227227
    228 #: admin/apwp-functions-admin.php:865 admin/apwp-functions-admin.php:866
    229 #: admin/auto-post-woocommerce-products-tabs.php:301
     228#: admin/apwp-functions-admin.php:867 admin/apwp-functions-admin.php:868
     229#: admin/auto-post-woocommerce-products-tabs.php:304
    230230#: admin/includes/apwp-add-social-icons.php:48
    231231msgid "ON SALE!"
    232232msgstr "À VENDA!"
    233233
    234 #: admin/apwp-functions-admin.php:942
     234#: admin/apwp-functions-admin.php:944
    235235#: admin/auto-post-woocommerce-products-help.php:126
    236236msgid "STARTER"
    237237msgstr "INICIANTE"
    238238
    239 #: admin/apwp-functions-admin.php:945
     239#: admin/apwp-functions-admin.php:947
    240240#: admin/auto-post-woocommerce-products-help.php:134
    241241msgid "PROFESSIONAL"
    242242msgstr "PROFISSIONAL"
    243243
    244 #: admin/apwp-functions-admin.php:948
     244#: admin/apwp-functions-admin.php:950
    245245#: admin/auto-post-woocommerce-products-help.php:130
    246246msgid "BUSINESS"
    247247msgstr "O NEGÓCIO"
    248248
    249 #: admin/apwp-functions-admin.php:951
     249#: admin/apwp-functions-admin.php:953
    250250msgid "FREE"
    251251msgstr "LIVRE"
    252252
    253 #: admin/apwp-functions-admin.php:1203
     253#: admin/apwp-functions-admin.php:1205
    254254msgid ""
    255255"While using a LOCALHOST server, all posts will be simulated and all calls to "
     
    259259"chamadas para Bitly.com suspensas."
    260260
    261 #: admin/apwp-functions-admin.php:1221
     261#: admin/apwp-functions-admin.php:1223
    262262msgid "WooCommerce product management and product posting to social media"
    263263msgstr "Gestão de produtos WooCommerce e publicação de produtos nas redes sociais"
    264264
    265 #: admin/apwp-functions-admin.php:1223
     265#: admin/apwp-functions-admin.php:1225
    266266msgid "version"
    267267msgstr "versão"
    268268
    269 #: admin/apwp-functions-admin.php:1227
     269#: admin/apwp-functions-admin.php:1229
    270270msgid "by"
    271271msgstr "por"
    272272
    273 #: admin/apwp-functions-admin.php:1239
     273#: admin/apwp-functions-admin.php:1241
    274274#, php-format
    275275msgid ""
     
    280280"escolher uma hashtag</a>."
    281281
    282 #: admin/apwp-functions-admin.php:1246
     282#: admin/apwp-functions-admin.php:1248
    283283#, php-format
    284284msgid ""
     
    289289"usar Hashtags efetivamente sem ser irritante</a>."
    290290
    291 #: admin/apwp-functions-admin.php:1253
     291#: admin/apwp-functions-admin.php:1255
    292292msgid ""
    293293"The hashtag (#) has become one of the most valuable assets in any modern "
     
    297297"marketing moderna."
    298298
    299 #: admin/apwp-functions-admin.php:1254
     299#: admin/apwp-functions-admin.php:1256
    300300msgid ""
    301301"The brands that create the most effective hashtags and employ them well, "
     
    305305"benefícios no Twitter."
    306306
    307 #: admin/apwp-functions-admin.php:1255
     307#: admin/apwp-functions-admin.php:1257
    308308msgid ""
    309309"Those who haven&apos;t invested the time and thought carefully about their "
     
    313313"hashtag (s) e como vão ser usados obtêm resultados previsíveis."
    314314
    315 #: admin/apwp-functions-admin.php:1256
     315#: admin/apwp-functions-admin.php:1258
    316316msgid ""
    317317". . .good hashtags should be memorable, so that your customers will easily "
     
    321321"recuperá-las facilmente."
    322322
    323 #: admin/apwp-functions-admin.php:1257
     323#: admin/apwp-functions-admin.php:1259
    324324msgid ""
    325325"In practice, hashtags are used to categorize social media content into "
     
    329329"social em listas facilmente navegáveis."
    330330
    331 #: admin/apwp-functions-admin.php:1258
     331#: admin/apwp-functions-admin.php:1260
    332332msgid ""
    333333"By including the #[INSERT KEYWORD] in a tweet, it then becomes visible "
     
    337337"com outras postagens usando a mesma hashtag."
    338338
    339 #: admin/apwp-functions-admin.php:1259
     339#: admin/apwp-functions-admin.php:1261
    340340msgid ""
    341341"Sometimes, the best way to use hashtags is to find ones that already exist."
     
    344344"existem."
    345345
    346 #: admin/apwp-functions-admin.php:1308
     346#: admin/apwp-functions-admin.php:1310
    347347msgid "Thank you for using our plugin!"
    348348msgstr "Obrigado por usar nosso plugin!"
    349349
    350 #: admin/apwp-functions-admin.php:1311
     350#: admin/apwp-functions-admin.php:1313
    351351msgid "You are currently utilizing a FREE Trial period."
    352352msgstr "Você está atualmente utilizando um período de avaliação GRATUITO."
    353353
    354 #: admin/apwp-functions-admin.php:1314
     354#: admin/apwp-functions-admin.php:1316
    355355#, php-format
    356356msgid ""
     
    363363"/a> Avaliação!"
    364364
    365 #: admin/apwp-functions-admin.php:1328
     365#: admin/apwp-functions-admin.php:1330
    366366#, php-format
    367367msgid ""
     
    372372"cilcreations.com/apwp/feature-requests/\" target=\"_blank\">Informe-nos!</a>"
    373373
    374 #: admin/apwp-functions-admin.php:1342
     374#: admin/apwp-functions-admin.php:1344
    375375#, php-format
    376376msgid ""
     
    381381"\"%s\" title=\"página de conta\" target=\"_blank\">Página da conta</a>."
    382382
    383 #: admin/apwp-functions-admin.php:1361
     383#: admin/apwp-functions-admin.php:1363
    384384#, php-format
    385385msgid ""
     
    390390"\"activar o teste\" target=\"_blank\">Ativar o meu teste gratuito</a>."
    391391
    392 #: admin/apwp-functions-admin.php:1380
     392#: admin/apwp-functions-admin.php:1382
    393393#, php-format
    394394msgid ""
     
    399399"href=\"%s\" title=\"ver planos\" target=\"_blank\">Veja todos os planos</a>."
    400400
    401 #: admin/apwp-functions-admin.php:1400
     401#: admin/apwp-functions-admin.php:1402
    402402msgid "Success!"
    403403msgstr "Sucesso!"
    404404
    405 #: admin/apwp-functions-admin.php:1411
     405#: admin/apwp-functions-admin.php:1413
    406406msgid "Auto Post INFORMATION:"
    407407msgstr "Informação Auto Post:"
    408408
    409 #: admin/apwp-functions-admin.php:1422
     409#: admin/apwp-functions-admin.php:1424
    410410msgid "Auto Post WARNING:"
    411411msgstr "Auto Post ATENÇÃO:"
    412412
    413 #: admin/apwp-functions-admin.php:1433
     413#: admin/apwp-functions-admin.php:1435
    414414msgid "WOOCOMMERCE ERROR:"
    415415msgstr "ERRO DE WOOCOMMERCE:"
    416416
    417 #: admin/apwp-functions-admin.php:1444
     417#: admin/apwp-functions-admin.php:1446
    418418msgid "APWCP ERROR:"
    419419msgstr "ERRO APWCP:"
    420420
    421 #: admin/apwp-functions-admin.php:1455
     421#: admin/apwp-functions-admin.php:1457
    422422msgid "Security ERROR:"
    423423msgstr "Erro de segurança:"
    424424
    425 #: admin/apwp-functions-admin.php:1465
     425#: admin/apwp-functions-admin.php:1467
    426426#: admin/includes/pro/apwp-quick-edit.php:34
    427427msgid "Product Edit ERROR:"
    428428msgstr "Produto Editar ERRO:"
    429429
    430 #: admin/apwp-functions-admin.php:1590
     430#: admin/apwp-functions-admin.php:1592
    431431msgid "Pause schedule"
    432432msgstr "Agenda de Pausa"
    433433
    434 #: admin/apwp-functions-admin.php:1594
     434#: admin/apwp-functions-admin.php:1596
    435435msgid "Schedule is disabled"
    436436msgstr "O cronograma está desativado"
    437437
    438 #: admin/apwp-functions-admin.php:1598
     438#: admin/apwp-functions-admin.php:1600
    439439#: admin/includes/class-apwp-cron-functions.php:116
    440440msgid "Every 24 hours"
    441441msgstr "A cada 24 horas"
    442442
    443 #: admin/apwp-functions-admin.php:1602
     443#: admin/apwp-functions-admin.php:1604
    444444#: admin/includes/class-apwp-cron-functions.php:121
    445445msgid "Every 12 hours"
    446446msgstr "A cada 12 horas"
    447447
    448 #: admin/apwp-functions-admin.php:1606
     448#: admin/apwp-functions-admin.php:1608
    449449#: admin/includes/class-apwp-cron-functions.php:126
    450450msgid "Every 8 hours"
    451451msgstr "A cada 8 horas"
    452452
    453 #: admin/apwp-functions-admin.php:1610
     453#: admin/apwp-functions-admin.php:1612
    454454#: admin/includes/class-apwp-cron-functions.php:131
    455455msgid "Every 7 hours"
    456456msgstr "A cada 7 horas"
    457457
    458 #: admin/apwp-functions-admin.php:1614
     458#: admin/apwp-functions-admin.php:1616
    459459#: admin/includes/class-apwp-cron-functions.php:144
    460460msgid "Every 6 hours"
    461461msgstr "A cada 6 horas"
    462462
    463 #: admin/apwp-functions-admin.php:1618
     463#: admin/apwp-functions-admin.php:1620
    464464#: admin/includes/class-apwp-cron-functions.php:154
    465465msgid "Every 5 hours"
    466466msgstr "A cada 5 horas"
    467467
    468 #: admin/apwp-functions-admin.php:1622
     468#: admin/apwp-functions-admin.php:1624
    469469#: admin/includes/class-apwp-cron-functions.php:149
    470470msgid "Every 4 hours"
    471471msgstr "A cada 4 horas"
    472472
    473 #: admin/apwp-functions-admin.php:1626
     473#: admin/apwp-functions-admin.php:1628
    474474#: admin/includes/class-apwp-cron-functions.php:163
    475475msgid "Every 3 hours"
    476476msgstr "A cada 3 horas"
    477477
    478 #: admin/apwp-functions-admin.php:1630
     478#: admin/apwp-functions-admin.php:1632
    479479#: admin/includes/class-apwp-cron-functions.php:168
    480480msgid "Every 2 hours"
    481481msgstr "A cada 2 horas"
    482482
    483 #: admin/apwp-functions-admin.php:1634
     483#: admin/apwp-functions-admin.php:1636
    484484#: admin/includes/class-apwp-cron-functions.php:177
    485485msgid "Every hour"
    486486msgstr "Toda hora"
    487487
    488 #: admin/apwp-functions-admin.php:1638
     488#: admin/apwp-functions-admin.php:1640
    489489#: admin/includes/class-apwp-cron-functions.php:182
    490490msgid "Every 30 minutes"
    491491msgstr "A cada 30 minutos"
    492492
    493 #: admin/apwp-functions-admin.php:1667
     493#: admin/apwp-functions-admin.php:1669
    494494msgid "End current Sale"
    495495msgstr "Venda atual final"
    496496
    497 #: admin/apwp-functions-admin.php:1668
     497#: admin/apwp-functions-admin.php:1670
    498498msgid "Cancel"
    499499msgstr "Cancelar"
    500500
    501 #: admin/apwp-functions-admin.php:1669
     501#: admin/apwp-functions-admin.php:1671
    502502msgid "Delete all products"
    503503msgstr "Excluir todos os produtos"
    504504
    505 #: admin/apwp-functions-admin.php:1670
     505#: admin/apwp-functions-admin.php:1672
    506506msgid "Are you sure you want to permanently delete"
    507507msgstr "Tem certeza de que deseja excluir permanentemente"
    508508
    509 #: admin/apwp-functions-admin.php:1671
     509#: admin/apwp-functions-admin.php:1673
    510510msgid ""
    511511"This procedure cannot be reversed and if this is a variable product then all "
     
    515515"todas as variações serão excluídas também!"
    516516
    517 #: admin/apwp-functions-admin.php:1672
     517#: admin/apwp-functions-admin.php:1674
    518518msgid "Are you sure you want to move this item to the Trash?"
    519519msgstr "Tem certeza de que deseja mover este item para o Lixo?"
    520520
    521 #: admin/apwp-functions-admin.php:1673
     521#: admin/apwp-functions-admin.php:1675
    522522#: admin/includes/apwp-list-table-functions.php:1050
    523523msgid "Auto sharing enabled"
    524524msgstr "Compartilhamento automático ativado"
    525525
    526 #: admin/apwp-functions-admin.php:1674
     526#: admin/apwp-functions-admin.php:1676
    527527#: admin/includes/apwp-list-table-functions.php:1051
    528528msgid "Not auto shared"
    529529msgstr "Não é compartilhado automaticamente"
    530530
    531 #: admin/apwp-functions-admin.php:1675
     531#: admin/apwp-functions-admin.php:1677
    532532#: admin/includes/apwp-product-list-class.php:375
    533533msgid "Product is featured"
    534534msgstr "Produto é destaque"
    535535
    536 #: admin/apwp-functions-admin.php:1676
     536#: admin/apwp-functions-admin.php:1678
    537537#: admin/includes/apwp-product-list-class.php:376
    538538msgid "Product is not featured"
    539539msgstr "O produto não está em destaque"
    540540
    541 #: admin/apwp-functions-admin.php:1677
     541#: admin/apwp-functions-admin.php:1679
    542542#: admin/includes/apwp-list-table-functions.php:1112
    543543msgid "Add product to click data statistics"
    544544msgstr "Adicionar produto para clicar em estatísticas de dados"
    545545
    546 #: admin/apwp-functions-admin.php:1678
     546#: admin/apwp-functions-admin.php:1680
    547547#: admin/includes/apwp-list-table-functions.php:1113
    548548msgid "Remove product from click data statistics"
    549549msgstr "Remover o produto das estatísticas de dados de cliques"
    550550
    551 #: admin/apwp-functions-admin.php:1679
     551#: admin/apwp-functions-admin.php:1681
    552552msgid ""
    553553"You do not have permisson to perform this action. Please ask your Admin."
     
    556556"administrador."
    557557
    558 #: admin/apwp-functions-admin.php:1680
     558#: admin/apwp-functions-admin.php:1682
    559559msgid "WordPress security check failed. Please try again."
    560560msgstr "Falha na verificação de segurança do WordPress. Por favor, tente novamente."
    561561
    562 #: admin/apwp-functions-admin.php:1681
     562#: admin/apwp-functions-admin.php:1683
    563563msgid "An error has occured. Please try again."
    564564msgstr "Ocorreu um erro. Por favor, tente novamente."
    565565
    566 #: admin/apwp-schedule-tab.php:30
     566#: admin/apwp-schedule-tab.php:32
    567567msgid "Schedule your Twitter auto posts"
    568568msgstr "Agende suas postagens automáticas no Twitter"
    569569
    570 #: admin/apwp-schedule-tab.php:64
     570#: admin/apwp-schedule-tab.php:76
    571571msgid "Waiting on CRON scheduler. Information will be updated soon."
    572572msgstr "Esperando no CRON scheduler. As informações serão atualizadas em breve."
    573573
    574 #: admin/apwp-schedule-tab.php:73
     574#: admin/apwp-schedule-tab.php:85
    575575msgid ""
    576576"The last auto post failed. Please see the APWP debug log on the Status tab."
     
    579579"APWP na guia Status."
    580580
    581 #: admin/apwp-schedule-tab.php:99
     581#: admin/apwp-schedule-tab.php:110
    582582msgid "Unknown - please set a new schedule."
    583583msgstr "Desconhecido - por favor, defina um novo horário."
    584584
    585 #: admin/apwp-schedule-tab.php:103
     585#: admin/apwp-schedule-tab.php:114
    586586msgid "Last auto Tweet information"
    587587msgstr "Última informação automática do Tweet"
    588588
    589 #: admin/apwp-schedule-tab.php:110
     589#: admin/apwp-schedule-tab.php:121
    590590msgid "While using a LOCALHOST server, all posts will be <em>simulated</em>."
    591591msgstr "Ao usar um servidor LOCALHOST, todas as postagens serão <em> simuladas</em>"
    592592
    593 #: admin/apwp-schedule-tab.php:121
     593#: admin/apwp-schedule-tab.php:132
    594594msgid "Posting schedule:"
    595595msgstr "Calendário de publicação:"
    596596
    597 #: admin/apwp-schedule-tab.php:130
     597#: admin/apwp-schedule-tab.php:141
    598598msgid "Next post:"
    599599msgstr "Próximo post:"
    600600
    601 #: admin/apwp-schedule-tab.php:138
     601#: admin/apwp-schedule-tab.php:149
    602602msgid "Last post:"
    603603msgstr "Última postagem:"
    604604
    605 #: admin/apwp-schedule-tab.php:145
     605#: admin/apwp-schedule-tab.php:156
    606606msgid "Product ID#:"
    607607msgstr "ID do produto#:"
    608608
    609 #: admin/apwp-schedule-tab.php:151
    610 #: admin/includes/apwp-list-table-functions.php:1746
     609#: admin/apwp-schedule-tab.php:162
     610#: admin/includes/apwp-list-table-functions.php:1782
    611611#: admin/includes/pro/apwp-quick-edit.php:602
    612612msgid "Title"
    613613msgstr "Título"
    614614
    615 #: admin/apwp-schedule-tab.php:157
     615#: admin/apwp-schedule-tab.php:168
    616616msgid "Post content:"
    617617msgstr "Publicar conteúdo:"
    618618
    619 #: admin/apwp-schedule-tab.php:166
     619#: admin/apwp-schedule-tab.php:177
    620620msgid "Hashtags used"
    621621msgstr "Hashtags usados"
    622622
    623 #: admin/apwp-schedule-tab.php:175
    624 #: admin/auto-post-woocommerce-products-tabs.php:363
     623#: admin/apwp-schedule-tab.php:186
     624#: admin/auto-post-woocommerce-products-tabs.php:366
    625625msgid "URL"
    626626msgstr "URL"
    627627
    628 #: admin/apwp-schedule-tab.php:186
     628#: admin/apwp-schedule-tab.php:197
    629629#: admin/includes/pro/class-apwp-stats-table.php:360
    630630msgid "Share to social media"
    631631msgstr "Compartilhar para mídias sociais"
    632632
    633 #: admin/apwp-schedule-tab.php:209
     633#: admin/apwp-schedule-tab.php:220
    634634msgid "Set your schedule"
    635635msgstr "Definir seu horário"
    636636
    637 #: admin/apwp-schedule-tab.php:212
     637#: admin/apwp-schedule-tab.php:223
    638638msgid "Schedule when your products will be posted to Twitter."
    639639msgstr "Agende quando seus produtos serão postados no Twitter."
    640640
    641 #: admin/apwp-schedule-tab.php:284
     641#: admin/apwp-schedule-tab.php:295
    642642msgid "How often would you like to auto post a product?"
    643643msgstr "Com que frequência você gostaria de postar um produto automaticamente?"
    644644
    645 #: admin/apwp-schedule-tab.php:288
     645#: admin/apwp-schedule-tab.php:299
    646646msgid ""
    647647"Select how often you would like to automatically post a product to "
     
    651651"no <em>Twitter</em> e salve."
    652652
    653 #: admin/apwp-schedule-tab.php:350 admin/includes/pro/apwp-quick-edit.php:102
     653#: admin/apwp-schedule-tab.php:361 admin/includes/pro/apwp-quick-edit.php:102
    654654msgid "Save changes"
    655655msgstr "Salvar alterações"
    656656
    657 #: admin/apwp-schedule-tab.php:354
     657#: admin/apwp-schedule-tab.php:365
    658658msgid "Schedule saved. Posting Tweet. . ."
    659659msgstr "Agenda salva. Postando Tweet. . ."
    660660
    661 #: admin/apwp-schedule-tab.php:357
    662 #| msgid "Disabled CRON schedule. . ."
     661#: admin/apwp-schedule-tab.php:368
    663662msgid "Disabling CRON schedule. . ."
    664663msgstr "Desativando o cronograma CRON. . ."
    665664
    666 #: admin/apwp-schedule-tab.php:360
     665#: admin/apwp-schedule-tab.php:371
    667666msgid "Please select a schedule other than the one already set."
    668667msgstr "Por favor, selecione um horário diferente daquele já definido."
    669668
    670 #: admin/apwp-schedule-tab.php:371
     669#: admin/apwp-schedule-tab.php:382
    671670#, php-format
    672671msgid ""
     
    677676">CIL Creations</a>"
    678677
    679 #: admin/apwp-schedule-tab.php:379
     678#: admin/apwp-schedule-tab.php:390
    680679msgid ""
    681680"If you have fewer than 50 products, it is recommended to set your posting "
     
    10261025msgstr "Veja nossa <a href=\"%s\" target=\"_blank\">política de privacidade</a>."
    10271026
    1028 #: admin/apwp-woocommerce-tab.php:25
     1027#: admin/apwp-woocommerce-tab.php:26
    10291028msgid "WooCommerce product categories"
    10301029msgstr "Categorias de produtos WooCommerce"
    10311030
    1032 #: admin/apwp-woocommerce-tab.php:45
     1031#: admin/apwp-woocommerce-tab.php:44
    10331032msgid "Current Auto Posting Data"
    10341033msgstr "Dados de publicação automática atual"
    10351034
    1036 #: admin/apwp-woocommerce-tab.php:52
     1035#: admin/apwp-woocommerce-tab.php:51
    10371036msgid "Product to Tweet"
    10381037msgid_plural "Products to Tweet"
     
    10401039msgstr[1] "Produtos para Tweet"
    10411040
    1042 #: admin/apwp-woocommerce-tab.php:58
     1041#: admin/apwp-woocommerce-tab.php:57
    10431042#: admin/includes/apwp-dashboard-widget.php:159
    10441043msgid "Scheduled to Tweet"
    10451044msgstr "Agendado para Tweetar"
    10461045
    1047 #: admin/apwp-woocommerce-tab.php:66
     1046#: admin/apwp-woocommerce-tab.php:65
    10481047msgid ""
    10491048"These figures are automatically updated when you make any changes to a "
     
    10551054"produto em seu inventário."
    10561055
    1057 #: admin/apwp-woocommerce-tab.php:69
     1056#: admin/apwp-woocommerce-tab.php:68
    10581057msgid ""
    10591058"<b>NOTE:</b> Any changes made to a product listing are reflected when the "
     
    10661065"publicação."
    10671066
    1068 #: admin/apwp-woocommerce-tab.php:91
     1067#: admin/apwp-woocommerce-tab.php:73
     1068msgid "Manually reset Products to Tweet list"
     1069msgstr "Redefinir manualmente os produtos para a lista de tweets"
     1070
     1071#: admin/apwp-woocommerce-tab.php:93
    10691072msgid "Select which categories to use when auto posting products to Twitter."
    10701073msgstr "Selecione as categorias a serem usadas ao postar produtos automaticamente no Twitter."
    10711074
    1072 #: admin/apwp-woocommerce-tab.php:115
     1075#: admin/apwp-woocommerce-tab.php:117
    10731076msgid "Select your product categories"
    10741077msgstr "Selecione suas categorias de produtos"
    10751078
    1076 #: admin/apwp-woocommerce-tab.php:119
     1079#: admin/apwp-woocommerce-tab.php:121
    10771080msgid ""
    10781081"The categories you select will allow all products within those categories to "
     
    10821085"categorias sejam postados automaticamente no <em>Twitter</em>."
    10831086
    1084 #: admin/apwp-woocommerce-tab.php:154
     1087#: admin/apwp-woocommerce-tab.php:156
    10851088#: admin/includes/apwp-list-table-functions.php:144
    10861089#: admin/includes/apwp-list-table-functions.php:156
     
    10901093msgstr "Selecionar tudo"
    10911094
    1092 #: admin/apwp-woocommerce-tab.php:157
     1095#: admin/apwp-woocommerce-tab.php:159
    10931096msgid "Select none"
    10941097msgstr "Selecione nenhum"
    10951098
    1096 #: admin/apwp-woocommerce-tab.php:161
     1099#: admin/apwp-woocommerce-tab.php:163
    10971100msgid "Please select at least one category."
    10981101msgstr "Por favor, selecione pelo menos uma categoria."
     
    13951398msgstr "Auto postar status de produtos WooCommerce"
    13961399
    1397 #: admin/auto-post-woocommerce-products-settings.php:366
    1398 #: admin/auto-post-woocommerce-products-settings.php:383
     1400#: admin/auto-post-woocommerce-products-settings.php:361
     1401#: admin/auto-post-woocommerce-products-settings.php:378
    13991402msgid "Products per page"
    14001403msgstr "Produtos por página"
     
    14281431msgstr "Estatisticas"
    14291432
    1430 #: admin/auto-post-woocommerce-products-tabs.php:199
     1433#: admin/auto-post-woocommerce-products-tabs.php:202
    14311434msgid "Product Sharing"
    14321435msgstr "Compartilhamento de Produtos"
    14331436
    1434 #: admin/auto-post-woocommerce-products-tabs.php:202
     1437#: admin/auto-post-woocommerce-products-tabs.php:205
    14351438msgid "Share products to your social media accounts."
    14361439msgstr "Compartilhe produtos com suas contas de mídia social."
    14371440
    1438 #: admin/auto-post-woocommerce-products-tabs.php:240
     1441#: admin/auto-post-woocommerce-products-tabs.php:243
    14391442#: admin/includes/pro/apwp-quick-edit.php:72
    14401443msgid "Previous page"
    14411444msgstr "Página anterior"
    14421445
    1443 #: admin/auto-post-woocommerce-products-tabs.php:245
     1446#: admin/auto-post-woocommerce-products-tabs.php:248
    14441447msgid ""
    14451448"Click one of the social media buttons below to begin sharing your product. "
     
    14511454"para a área de transferência para colar em sua postagem."
    14521455
    1453 #: admin/auto-post-woocommerce-products-tabs.php:275
     1456#: admin/auto-post-woocommerce-products-tabs.php:278
    14541457msgid "none"
    14551458msgstr "Nenhum"
    14561459
    1457 #: admin/auto-post-woocommerce-products-tabs.php:302
     1460#: admin/auto-post-woocommerce-products-tabs.php:305
    14581461#: admin/includes/apwp-add-social-icons.php:49
    14591462msgid "discount"
    14601463msgstr "desconto"
    14611464
    1462 #: admin/auto-post-woocommerce-products-tabs.php:331
     1465#: admin/auto-post-woocommerce-products-tabs.php:334
    14631466msgid "not available"
    14641467msgstr "não disponível"
    14651468
    1466 #: admin/auto-post-woocommerce-products-tabs.php:334
     1469#: admin/auto-post-woocommerce-products-tabs.php:337
    14671470msgid "No description available"
    14681471msgstr "sem descrição disponível"
    14691472
    1470 #: admin/auto-post-woocommerce-products-tabs.php:341
     1473#: admin/auto-post-woocommerce-products-tabs.php:344
    14711474msgid "Click any details to copy product information to the clipboard."
    14721475msgstr "Clique nos detalhes para copiar as informações do produto na área de transferência."
    14731476
    1474 #: admin/auto-post-woocommerce-products-tabs.php:355
     1477#: admin/auto-post-woocommerce-products-tabs.php:358
    14751478msgid "Description"
    14761479msgstr "Descrição"
    14771480
    1478 #: admin/auto-post-woocommerce-products-tabs.php:359
     1481#: admin/auto-post-woocommerce-products-tabs.php:362
    14791482#: admin/includes/pro/apwp-quick-edit.php:780
    14801483msgid "Hashtags"
    14811484msgstr "Hashtags"
    14821485
    1483 #: admin/auto-post-woocommerce-products-tabs.php:369
     1486#: admin/auto-post-woocommerce-products-tabs.php:372
    14841487msgid "Bitly short link"
    14851488msgstr "Link curto"
    14861489
    1487 #: admin/auto-post-woocommerce-products-tabs.php:374
     1490#: admin/auto-post-woocommerce-products-tabs.php:377
    14881491msgid "This is a parent product."
    14891492msgstr "Este é um produto pai."
    14901493
    1491 #: admin/auto-post-woocommerce-products-tabs.php:379
     1494#: admin/auto-post-woocommerce-products-tabs.php:382
    14921495msgid "Product variation:"
    14931496msgstr "Variação do produto:"
    14941497
    1495 #: admin/auto-post-woocommerce-products-tabs.php:386
    1496 #: admin/includes/apwp-list-table-functions.php:1750
     1498#: admin/auto-post-woocommerce-products-tabs.php:389
     1499#: admin/includes/apwp-list-table-functions.php:1786
    14971500#: admin/includes/pro/apwp-quick-edit.php:664
    14981501msgid "Regular price"
    14991502msgstr "Preço regular"
    15001503
    1501 #: admin/auto-post-woocommerce-products-tabs.php:390
    1502 #: admin/includes/apwp-list-table-functions.php:1751
     1504#: admin/auto-post-woocommerce-products-tabs.php:393
     1505#: admin/includes/apwp-list-table-functions.php:1787
    15031506#: admin/includes/pro/apwp-quick-edit.php:678
    15041507msgid "Sale price"
    15051508msgstr "Preço de venda"
    15061509
    1507 #: admin/auto-post-woocommerce-products-tabs.php:394
    1508 #: admin/includes/apwp-list-table-functions.php:1752
     1510#: admin/auto-post-woocommerce-products-tabs.php:397
     1511#: admin/includes/apwp-list-table-functions.php:1788
    15091512#: admin/includes/pro/apwp-quick-edit.php:692
    15101513msgid "Current price"
    15111514msgstr "Preço atual"
    15121515
    1513 #: admin/auto-post-woocommerce-products-tabs.php:405
     1516#: admin/auto-post-woocommerce-products-tabs.php:408
    15141517msgid "Discount tag line"
    15151518msgstr "Desconto tag line"
     
    15271530"válido para postar em mídias sociais."
    15281531
    1529 #: admin/includes/apwp-check-setup.php:101
     1532#: admin/includes/apwp-check-setup.php:105
    15301533#, php-format
    15311534msgid ""
     
    15381541"knowledgebase/enable-curl-via-the-php-ini-file/</a>"
    15391542
    1540 #: admin/includes/apwp-check-setup.php:110
     1543#: admin/includes/apwp-check-setup.php:114
    15411544msgid ""
    15421545"Please set a schedule to enable auto posting to Twitter, or disable auto "
     
    15461549"ou desabilite a postagem automática no TWITTER TAB."
    15471550
    1548 #: admin/includes/apwp-check-setup.php:140
     1551#: admin/includes/apwp-check-setup.php:144
    15491552msgid ""
    15501553"Please check your Twitter and Bitly codes on the Twitter tab. There are "
     
    15541557"códigos ausentes."
    15551558
    1556 #: admin/includes/apwp-check-setup.php:156
     1559#: admin/includes/apwp-check-setup.php:160
    15571560msgid "Please select at least one product category on the CATEGORY TAB."
    15581561msgstr "Por favor, selecione pelo menos uma categoria de produto na aba CATEGORY."
     
    16481651msgstr "Última versão instalada."
    16491652
    1650 #: admin/includes/apwp-debug.php:26
     1653#: admin/includes/apwp-debug.php:25
    16511654msgid "APWCP status page"
    16521655msgstr "Página de status do APWCP"
    16531656
    1654 #: admin/includes/apwp-debug.php:34
     1657#: admin/includes/apwp-debug.php:33
    16551658msgid "APWCP status information"
    16561659msgstr "Informações de status do APWCP"
    16571660
    1658 #: admin/includes/apwp-debug.php:38
     1661#: admin/includes/apwp-debug.php:37
    16591662msgid "Current settings and values"
    16601663msgstr "Configurações atuais e valores"
    16611664
    1662 #: admin/includes/apwp-debug.php:177
     1665#: admin/includes/apwp-debug.php:176
    16631666msgid "Log Files"
    16641667msgstr "Arquivos de log"
    16651668
    1666 #: admin/includes/apwp-debug.php:254
     1669#: admin/includes/apwp-debug.php:253
    16671670msgid "Copy data to clipboard"
    16681671msgstr "Copiar dados para a área de transferência"
    16691672
    1670 #: admin/includes/apwp-debug.php:446
     1673#: admin/includes/apwp-debug.php:445
    16711674msgid "Disable WP_DEBUG"
    16721675msgstr "Desativar WP_DEBUG"
    16731676
    1674 #: admin/includes/apwp-debug.php:450
     1677#: admin/includes/apwp-debug.php:449
    16751678msgid "Enable WP_DEBUG"
    16761679msgstr "Ativar WP_DEBUG"
    16771680
    1678 #: admin/includes/apwp-debug.php:459
     1681#: admin/includes/apwp-debug.php:458
    16791682msgid "Debug mode set, refreshing page. . ."
    16801683msgstr "Modo de depuração definido, página de atualização. . ."
    16811684
    1682 #: admin/includes/apwp-debug.php:463
     1685#: admin/includes/apwp-debug.php:462
    16831686msgid "Failed to set WP_DEBUG! Please try again."
    16841687msgstr "Falha ao definir WP_DEBUG! Por favor, tente novamente."
    16851688
    1686 #: admin/includes/apwp-debug.php:501
     1689#: admin/includes/apwp-debug.php:500
    16871690#, php-format
    16881691msgid ""
     
    16961699"transferência."
    16971700
    1698 #: admin/includes/apwp-debug.php:509
     1701#: admin/includes/apwp-debug.php:508
    16991702msgid ""
    17001703"You may click the button below to Enable/Disable WP_DEBUG and the WP_DEBUG "
     
    17111714"durante a depuração de um problema."
    17121715
    1713 #: admin/includes/apwp-debug.php:512
     1716#: admin/includes/apwp-debug.php:511
    17141717msgid "Check this box to enable WP_DEBUG_DISPLAY."
    17151718msgstr "Marque esta caixa para ativar o WP_DEBUG_DISPLAY."
    17161719
    1717 #: admin/includes/apwp-debug.php:516
     1720#: admin/includes/apwp-debug.php:515
    17181721msgid "Enable WP_DEBUG_DISPLAY"
    17191722msgstr "Ativar WP_DEBUG_DISPLAY"
     
    17211724#: admin/includes/apwp-display-product-list.php:49
    17221725#: admin/includes/apwp-list-table-functions.php:151
    1723 #: admin/includes/apwp-list-table-functions.php:1748
     1726#: admin/includes/apwp-list-table-functions.php:1784
    17241727#: admin/includes/pro/apwp-stats-table-functions.php:25
    17251728msgid "Category"
     
    21522155msgstr ": produtos de variação"
    21532156
    2154 #: admin/includes/apwp-list-table-functions.php:1744
     2157#: admin/includes/apwp-list-table-functions.php:1780
    21552158#: admin/includes/pro/apwp-quick-edit.php:558
    21562159#: admin/includes/pro/class-apwp-stats-table.php:142
     
    21582161msgstr "ID"
    21592162
    2160 #: admin/includes/apwp-list-table-functions.php:1745
     2163#: admin/includes/apwp-list-table-functions.php:1781
    21612164#: admin/includes/pro/class-apwp-stats-table.php:143
    21622165msgid "Image"
    21632166msgstr "Imagem"
    21642167
    2165 #: admin/includes/apwp-list-table-functions.php:1747
     2168#: admin/includes/apwp-list-table-functions.php:1783
    21662169msgid "Type"
    21672170msgstr "Tipo"
    21682171
    2169 #: admin/includes/apwp-list-table-functions.php:1749
     2172#: admin/includes/apwp-list-table-functions.php:1785
    21702173#: admin/includes/pro/apwp-quick-edit.php:1076
    21712174msgid "Stock status"
    21722175msgstr "Status de estoque"
    21732176
    2174 #: admin/includes/apwp-list-table-functions.php:1753
     2177#: admin/includes/apwp-list-table-functions.php:1789
    21752178msgid "Sold"
    21762179msgstr "Vendido"
    21772180
    2178 #: admin/includes/apwp-list-table-functions.php:1754
     2181#: admin/includes/apwp-list-table-functions.php:1790
    21792182msgid "Sharing"
    21802183msgstr "Compartilhando"
    21812184
    2182 #: admin/includes/apwp-list-table-functions.php:1775
     2185#: admin/includes/apwp-list-table-functions.php:1811
    21832186#: admin/includes/pro/apwp-quick-edit.php:821
    21842187msgid "Sale dates"
     
    23082311
    23092312#: admin/includes/display-quick-start-tab.php:59
    2310 msgid ""
    2311 "Added Bulk Actions to the Product list tab. The ability to edit products "
    2312 "with bulk edit is currently being added to the plugin."
    2313 msgstr ""
    2314 "Adicionou ações em massa à guia da lista de produtos. A capacidade de editar "
    2315 "produtos com edição em massa está sendo adicionada ao plug-in."
     2313msgid "Added button to manually reset the products to Tweet list."
     2314msgstr "Adicionado botão para redefinir manualmente os produtos para a lista de tweets."
    23162315
    23172316#: admin/includes/display-quick-start-tab.php:60
    23182317msgid ""
    2319 "Fixed the issues with the auto poster; showing incorrect number of products, "
    2320 "re-posting the same product right after it was posted, reseting the products "
    2321 "to post list when it was not time. "
    2322 msgstr ""
    2323 "Corrigidos os problemas com o cartaz automático; mostrando o número "
    2324 "incorreto de produtos, postando novamente o mesmo produto logo após ter sido "
    2325 "publicado, redefinindo os produtos para a lista de postagens quando não era "
    2326 "hora."
    2327 
    2328 #: admin/includes/display-quick-start-tab.php:61
    2329 msgid ""
    2330 "Fixed issue when changing the auto post schedule, the screen would refresh "
    2331 "over and over."
    2332 msgstr ""
    2333 "Corrigido problema ao alterar o cronograma de postagem automática, a tela "
    2334 "atualizava repetidamente."
     2318"Fixed a few other issues including retrieving Bitly shortlinks which had "
     2319"stopped working."
     2320msgstr ""
     2321"Corrigido alguns outros problemas, incluindo a recuperação de links curtos "
     2322"Bitly que parou de funcionar."
    23352323
    23362324#: admin/includes/display-quick-start-tab.php:65
  • auto-post-woocommerce-products/trunk/languages/auto-post-woocommerce-products.pot

    r2001944 r2002116  
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: APWCP 2.1.2.3\n"
     9"Project-Id-Version: APWCP 2.1.2.4\n"
    1010"Report-Msgid-Bugs-To: [email protected]\n"
    11 "POT-Creation-Date: 2018-12-19 16:01-0600\n"
     11"POT-Creation-Date: 2018-12-27 00:57-0600\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    3232msgstr ""
    3333
    34 #: auto-post-woocommerce-products.php:84 admin/apwp-functions-admin.php:1216
     34#: auto-post-woocommerce-products.php:84 admin/apwp-functions-admin.php:1218
    3535msgid "Auto Post WooCommerce Products"
    3636msgstr ""
     
    7878
    7979#: admin/apwp-fs-functions.php:42 admin/apwp-fs-functions.php:174
    80 #: admin/apwp-schedule-tab.php:363 admin/apwp-settings-tab.php:60
     80#: admin/apwp-schedule-tab.php:374 admin/apwp-settings-tab.php:60
    8181#: admin/apwp-settings-tab.php:137 admin/apwp-settings-tab.php:232
    8282#: admin/apwp-settings-tab.php:283 admin/apwp-settings-tab.php:356
     
    200200msgstr ""
    201201
    202 #: admin/apwp-functions-admin.php:865 admin/apwp-functions-admin.php:866
    203 #: admin/auto-post-woocommerce-products-tabs.php:301
     202#: admin/apwp-functions-admin.php:867 admin/apwp-functions-admin.php:868
     203#: admin/auto-post-woocommerce-products-tabs.php:304
    204204#: admin/includes/apwp-add-social-icons.php:48
    205205msgid "ON SALE!"
    206206msgstr ""
    207207
    208 #: admin/apwp-functions-admin.php:942
     208#: admin/apwp-functions-admin.php:944
    209209#: admin/auto-post-woocommerce-products-help.php:126
    210210msgid "STARTER"
    211211msgstr ""
    212212
    213 #: admin/apwp-functions-admin.php:945
     213#: admin/apwp-functions-admin.php:947
    214214#: admin/auto-post-woocommerce-products-help.php:134
    215215msgid "PROFESSIONAL"
    216216msgstr ""
    217217
    218 #: admin/apwp-functions-admin.php:948
     218#: admin/apwp-functions-admin.php:950
    219219#: admin/auto-post-woocommerce-products-help.php:130
    220220msgid "BUSINESS"
    221221msgstr ""
    222222
    223 #: admin/apwp-functions-admin.php:951
     223#: admin/apwp-functions-admin.php:953
    224224msgid "FREE"
    225225msgstr ""
    226226
    227 #: admin/apwp-functions-admin.php:1203
     227#: admin/apwp-functions-admin.php:1205
    228228msgid ""
    229229"While using a LOCALHOST server, all posts will be simulated and all calls to "
     
    231231msgstr ""
    232232
    233 #: admin/apwp-functions-admin.php:1221
     233#: admin/apwp-functions-admin.php:1223
    234234msgid "WooCommerce product management and product posting to social media"
    235235msgstr ""
    236236
    237 #: admin/apwp-functions-admin.php:1223
     237#: admin/apwp-functions-admin.php:1225
    238238msgid "version"
    239239msgstr ""
    240240
    241 #: admin/apwp-functions-admin.php:1227
     241#: admin/apwp-functions-admin.php:1229
    242242msgid "by"
    243243msgstr ""
    244244
    245 #: admin/apwp-functions-admin.php:1239
     245#: admin/apwp-functions-admin.php:1241
    246246#, php-format
    247247msgid ""
     
    250250msgstr ""
    251251
    252 #: admin/apwp-functions-admin.php:1246
     252#: admin/apwp-functions-admin.php:1248
    253253#, php-format
    254254msgid ""
     
    257257msgstr ""
    258258
    259 #: admin/apwp-functions-admin.php:1253
     259#: admin/apwp-functions-admin.php:1255
    260260msgid ""
    261261"The hashtag (#) has become one of the most valuable assets in any modern "
     
    263263msgstr ""
    264264
    265 #: admin/apwp-functions-admin.php:1254
     265#: admin/apwp-functions-admin.php:1256
    266266msgid ""
    267267"The brands that create the most effective hashtags and employ them well, "
     
    269269msgstr ""
    270270
    271 #: admin/apwp-functions-admin.php:1255
     271#: admin/apwp-functions-admin.php:1257
    272272msgid ""
    273273"Those who haven&apos;t invested the time and thought carefully about their "
     
    275275msgstr ""
    276276
    277 #: admin/apwp-functions-admin.php:1256
     277#: admin/apwp-functions-admin.php:1258
    278278msgid ""
    279279". . .good hashtags should be memorable, so that your customers will easily "
     
    281281msgstr ""
    282282
    283 #: admin/apwp-functions-admin.php:1257
     283#: admin/apwp-functions-admin.php:1259
    284284msgid ""
    285285"In practice, hashtags are used to categorize social media content into "
     
    287287msgstr ""
    288288
    289 #: admin/apwp-functions-admin.php:1258
     289#: admin/apwp-functions-admin.php:1260
    290290msgid ""
    291291"By including the #[INSERT KEYWORD] in a tweet, it then becomes visible "
     
    293293msgstr ""
    294294
    295 #: admin/apwp-functions-admin.php:1259
     295#: admin/apwp-functions-admin.php:1261
    296296msgid ""
    297297"Sometimes, the best way to use hashtags is to find ones that already exist."
    298298msgstr ""
    299299
    300 #: admin/apwp-functions-admin.php:1308
     300#: admin/apwp-functions-admin.php:1310
    301301msgid "Thank you for using our plugin!"
    302302msgstr ""
    303303
    304 #: admin/apwp-functions-admin.php:1311
     304#: admin/apwp-functions-admin.php:1313
    305305msgid "You are currently utilizing a FREE Trial period."
    306306msgstr ""
    307307
    308 #: admin/apwp-functions-admin.php:1314
     308#: admin/apwp-functions-admin.php:1316
    309309#, php-format
    310310msgid ""
     
    314314msgstr ""
    315315
    316 #: admin/apwp-functions-admin.php:1328
     316#: admin/apwp-functions-admin.php:1330
    317317#, php-format
    318318msgid ""
     
    321321msgstr ""
    322322
    323 #: admin/apwp-functions-admin.php:1342
     323#: admin/apwp-functions-admin.php:1344
    324324#, php-format
    325325msgid ""
     
    328328msgstr ""
    329329
    330 #: admin/apwp-functions-admin.php:1361
     330#: admin/apwp-functions-admin.php:1363
    331331#, php-format
    332332msgid ""
     
    335335msgstr ""
    336336
    337 #: admin/apwp-functions-admin.php:1380
     337#: admin/apwp-functions-admin.php:1382
    338338#, php-format
    339339msgid ""
     
    342342msgstr ""
    343343
    344 #: admin/apwp-functions-admin.php:1400
     344#: admin/apwp-functions-admin.php:1402
    345345msgid "Success!"
    346346msgstr ""
    347347
    348 #: admin/apwp-functions-admin.php:1411
     348#: admin/apwp-functions-admin.php:1413
    349349msgid "Auto Post INFORMATION:"
    350350msgstr ""
    351351
    352 #: admin/apwp-functions-admin.php:1422
     352#: admin/apwp-functions-admin.php:1424
    353353msgid "Auto Post WARNING:"
    354354msgstr ""
    355355
    356 #: admin/apwp-functions-admin.php:1433
     356#: admin/apwp-functions-admin.php:1435
    357357msgid "WOOCOMMERCE ERROR:"
    358358msgstr ""
    359359
    360 #: admin/apwp-functions-admin.php:1444
     360#: admin/apwp-functions-admin.php:1446
    361361msgid "APWCP ERROR:"
    362362msgstr ""
    363363
    364 #: admin/apwp-functions-admin.php:1455
     364#: admin/apwp-functions-admin.php:1457
    365365msgid "Security ERROR:"
    366366msgstr ""
    367367
    368 #: admin/apwp-functions-admin.php:1465
     368#: admin/apwp-functions-admin.php:1467
    369369#: admin/includes/pro/apwp-quick-edit.php:34
    370370msgid "Product Edit ERROR:"
    371371msgstr ""
    372372
    373 #: admin/apwp-functions-admin.php:1590
     373#: admin/apwp-functions-admin.php:1592
    374374msgid "Pause schedule"
    375375msgstr ""
    376376
    377 #: admin/apwp-functions-admin.php:1594
     377#: admin/apwp-functions-admin.php:1596
    378378msgid "Schedule is disabled"
    379379msgstr ""
    380380
    381 #: admin/apwp-functions-admin.php:1598
     381#: admin/apwp-functions-admin.php:1600
    382382#: admin/includes/class-apwp-cron-functions.php:116
    383383msgid "Every 24 hours"
    384384msgstr ""
    385385
    386 #: admin/apwp-functions-admin.php:1602
     386#: admin/apwp-functions-admin.php:1604
    387387#: admin/includes/class-apwp-cron-functions.php:121
    388388msgid "Every 12 hours"
    389389msgstr ""
    390390
    391 #: admin/apwp-functions-admin.php:1606
     391#: admin/apwp-functions-admin.php:1608
    392392#: admin/includes/class-apwp-cron-functions.php:126
    393393msgid "Every 8 hours"
    394394msgstr ""
    395395
    396 #: admin/apwp-functions-admin.php:1610
     396#: admin/apwp-functions-admin.php:1612
    397397#: admin/includes/class-apwp-cron-functions.php:131
    398398msgid "Every 7 hours"
    399399msgstr ""
    400400
    401 #: admin/apwp-functions-admin.php:1614
     401#: admin/apwp-functions-admin.php:1616
    402402#: admin/includes/class-apwp-cron-functions.php:144
    403403msgid "Every 6 hours"
    404404msgstr ""
    405405
    406 #: admin/apwp-functions-admin.php:1618
     406#: admin/apwp-functions-admin.php:1620
    407407#: admin/includes/class-apwp-cron-functions.php:154
    408408msgid "Every 5 hours"
    409409msgstr ""
    410410
    411 #: admin/apwp-functions-admin.php:1622
     411#: admin/apwp-functions-admin.php:1624
    412412#: admin/includes/class-apwp-cron-functions.php:149
    413413msgid "Every 4 hours"
    414414msgstr ""
    415415
    416 #: admin/apwp-functions-admin.php:1626
     416#: admin/apwp-functions-admin.php:1628
    417417#: admin/includes/class-apwp-cron-functions.php:163
    418418msgid "Every 3 hours"
    419419msgstr ""
    420420
    421 #: admin/apwp-functions-admin.php:1630
     421#: admin/apwp-functions-admin.php:1632
    422422#: admin/includes/class-apwp-cron-functions.php:168
    423423msgid "Every 2 hours"
    424424msgstr ""
    425425
    426 #: admin/apwp-functions-admin.php:1634
     426#: admin/apwp-functions-admin.php:1636
    427427#: admin/includes/class-apwp-cron-functions.php:177
    428428msgid "Every hour"
    429429msgstr ""
    430430
    431 #: admin/apwp-functions-admin.php:1638
     431#: admin/apwp-functions-admin.php:1640
    432432#: admin/includes/class-apwp-cron-functions.php:182
    433433msgid "Every 30 minutes"
    434434msgstr ""
    435435
    436 #: admin/apwp-functions-admin.php:1667
     436#: admin/apwp-functions-admin.php:1669
    437437msgid "End current Sale"
    438438msgstr ""
    439439
    440 #: admin/apwp-functions-admin.php:1668
     440#: admin/apwp-functions-admin.php:1670
    441441msgid "Cancel"
    442442msgstr ""
    443443
    444 #: admin/apwp-functions-admin.php:1669
     444#: admin/apwp-functions-admin.php:1671
    445445msgid "Delete all products"
    446446msgstr ""
    447447
    448 #: admin/apwp-functions-admin.php:1670
     448#: admin/apwp-functions-admin.php:1672
    449449msgid "Are you sure you want to permanently delete"
    450450msgstr ""
    451451
    452 #: admin/apwp-functions-admin.php:1671
     452#: admin/apwp-functions-admin.php:1673
    453453msgid ""
    454454"This procedure cannot be reversed and if this is a variable product then all "
     
    456456msgstr ""
    457457
    458 #: admin/apwp-functions-admin.php:1672
     458#: admin/apwp-functions-admin.php:1674
    459459msgid "Are you sure you want to move this item to the Trash?"
    460460msgstr ""
    461461
    462 #: admin/apwp-functions-admin.php:1673
     462#: admin/apwp-functions-admin.php:1675
    463463#: admin/includes/apwp-list-table-functions.php:1050
    464464msgid "Auto sharing enabled"
    465465msgstr ""
    466466
    467 #: admin/apwp-functions-admin.php:1674
     467#: admin/apwp-functions-admin.php:1676
    468468#: admin/includes/apwp-list-table-functions.php:1051
    469469msgid "Not auto shared"
    470470msgstr ""
    471471
    472 #: admin/apwp-functions-admin.php:1675
     472#: admin/apwp-functions-admin.php:1677
    473473#: admin/includes/apwp-product-list-class.php:375
    474474msgid "Product is featured"
    475475msgstr ""
    476476
    477 #: admin/apwp-functions-admin.php:1676
     477#: admin/apwp-functions-admin.php:1678
    478478#: admin/includes/apwp-product-list-class.php:376
    479479msgid "Product is not featured"
    480480msgstr ""
    481481
    482 #: admin/apwp-functions-admin.php:1677
     482#: admin/apwp-functions-admin.php:1679
    483483#: admin/includes/apwp-list-table-functions.php:1112
    484484msgid "Add product to click data statistics"
    485485msgstr ""
    486486
    487 #: admin/apwp-functions-admin.php:1678
     487#: admin/apwp-functions-admin.php:1680
    488488#: admin/includes/apwp-list-table-functions.php:1113
    489489msgid "Remove product from click data statistics"
    490490msgstr ""
    491491
    492 #: admin/apwp-functions-admin.php:1679
     492#: admin/apwp-functions-admin.php:1681
    493493msgid ""
    494494"You do not have permisson to perform this action. Please ask your Admin."
    495495msgstr ""
    496496
    497 #: admin/apwp-functions-admin.php:1680
     497#: admin/apwp-functions-admin.php:1682
    498498msgid "WordPress security check failed. Please try again."
    499499msgstr ""
    500500
    501 #: admin/apwp-functions-admin.php:1681
     501#: admin/apwp-functions-admin.php:1683
    502502msgid "An error has occured. Please try again."
    503503msgstr ""
    504504
    505 #: admin/apwp-schedule-tab.php:30
     505#: admin/apwp-schedule-tab.php:32
    506506msgid "Schedule your Twitter auto posts"
    507507msgstr ""
    508508
    509 #: admin/apwp-schedule-tab.php:64
     509#: admin/apwp-schedule-tab.php:76
    510510msgid "Waiting on CRON scheduler. Information will be updated soon."
    511511msgstr ""
    512512
    513 #: admin/apwp-schedule-tab.php:73
     513#: admin/apwp-schedule-tab.php:85
    514514msgid ""
    515515"The last auto post failed. Please see the APWP debug log on the Status tab."
    516516msgstr ""
    517517
    518 #: admin/apwp-schedule-tab.php:99
     518#: admin/apwp-schedule-tab.php:110
    519519msgid "Unknown - please set a new schedule."
    520520msgstr ""
    521521
    522 #: admin/apwp-schedule-tab.php:103
     522#: admin/apwp-schedule-tab.php:114
    523523msgid "Last auto Tweet information"
    524524msgstr ""
    525525
    526 #: admin/apwp-schedule-tab.php:110
     526#: admin/apwp-schedule-tab.php:121
    527527msgid "While using a LOCALHOST server, all posts will be <em>simulated</em>."
    528528msgstr ""
    529529
    530 #: admin/apwp-schedule-tab.php:121
     530#: admin/apwp-schedule-tab.php:132
    531531msgid "Posting schedule:"
    532532msgstr ""
    533533
    534 #: admin/apwp-schedule-tab.php:130
     534#: admin/apwp-schedule-tab.php:141
    535535msgid "Next post:"
    536536msgstr ""
    537537
    538 #: admin/apwp-schedule-tab.php:138
     538#: admin/apwp-schedule-tab.php:149
    539539msgid "Last post:"
    540540msgstr ""
    541541
    542 #: admin/apwp-schedule-tab.php:145
     542#: admin/apwp-schedule-tab.php:156
    543543msgid "Product ID#:"
    544544msgstr ""
    545545
    546 #: admin/apwp-schedule-tab.php:151
    547 #: admin/includes/apwp-list-table-functions.php:1746
     546#: admin/apwp-schedule-tab.php:162
     547#: admin/includes/apwp-list-table-functions.php:1782
    548548#: admin/includes/pro/apwp-quick-edit.php:602
    549549msgid "Title"
    550550msgstr ""
    551551
    552 #: admin/apwp-schedule-tab.php:157
     552#: admin/apwp-schedule-tab.php:168
    553553msgid "Post content:"
    554554msgstr ""
    555555
    556 #: admin/apwp-schedule-tab.php:166
     556#: admin/apwp-schedule-tab.php:177
    557557msgid "Hashtags used"
    558558msgstr ""
    559559
    560 #: admin/apwp-schedule-tab.php:175
    561 #: admin/auto-post-woocommerce-products-tabs.php:363
     560#: admin/apwp-schedule-tab.php:186
     561#: admin/auto-post-woocommerce-products-tabs.php:366
    562562msgid "URL"
    563563msgstr ""
    564564
    565 #: admin/apwp-schedule-tab.php:186
     565#: admin/apwp-schedule-tab.php:197
    566566#: admin/includes/pro/class-apwp-stats-table.php:360
    567567msgid "Share to social media"
    568568msgstr ""
    569569
    570 #: admin/apwp-schedule-tab.php:209
     570#: admin/apwp-schedule-tab.php:220
    571571msgid "Set your schedule"
    572572msgstr ""
    573573
    574 #: admin/apwp-schedule-tab.php:212
     574#: admin/apwp-schedule-tab.php:223
    575575msgid "Schedule when your products will be posted to Twitter."
    576576msgstr ""
    577577
    578 #: admin/apwp-schedule-tab.php:284
     578#: admin/apwp-schedule-tab.php:295
    579579msgid "How often would you like to auto post a product?"
    580580msgstr ""
    581581
    582 #: admin/apwp-schedule-tab.php:288
     582#: admin/apwp-schedule-tab.php:299
    583583msgid ""
    584584"Select how often you would like to automatically post a product to "
     
    586586msgstr ""
    587587
    588 #: admin/apwp-schedule-tab.php:350 admin/includes/pro/apwp-quick-edit.php:102
     588#: admin/apwp-schedule-tab.php:361 admin/includes/pro/apwp-quick-edit.php:102
    589589msgid "Save changes"
    590590msgstr ""
    591591
    592 #: admin/apwp-schedule-tab.php:354
     592#: admin/apwp-schedule-tab.php:365
    593593msgid "Schedule saved. Posting Tweet. . ."
    594594msgstr ""
    595595
    596 #: admin/apwp-schedule-tab.php:357
     596#: admin/apwp-schedule-tab.php:368
    597597msgid "Disabling CRON schedule. . ."
    598598msgstr ""
    599599
    600 #: admin/apwp-schedule-tab.php:360
     600#: admin/apwp-schedule-tab.php:371
    601601msgid "Please select a schedule other than the one already set."
    602602msgstr ""
    603603
    604 #: admin/apwp-schedule-tab.php:371
     604#: admin/apwp-schedule-tab.php:382
    605605#, php-format
    606606msgid ""
     
    609609msgstr ""
    610610
    611 #: admin/apwp-schedule-tab.php:379
     611#: admin/apwp-schedule-tab.php:390
    612612msgid ""
    613613"If you have fewer than 50 products, it is recommended to set your posting "
     
    905905msgstr ""
    906906
    907 #: admin/apwp-woocommerce-tab.php:25
     907#: admin/apwp-woocommerce-tab.php:26
    908908msgid "WooCommerce product categories"
    909909msgstr ""
    910910
    911 #: admin/apwp-woocommerce-tab.php:45
     911#: admin/apwp-woocommerce-tab.php:44
    912912msgid "Current Auto Posting Data"
    913913msgstr ""
    914914
    915 #: admin/apwp-woocommerce-tab.php:52
     915#: admin/apwp-woocommerce-tab.php:51
    916916msgid "Product to Tweet"
    917917msgid_plural "Products to Tweet"
     
    919919msgstr[1] ""
    920920
    921 #: admin/apwp-woocommerce-tab.php:58
     921#: admin/apwp-woocommerce-tab.php:57
    922922#: admin/includes/apwp-dashboard-widget.php:159
    923923msgid "Scheduled to Tweet"
    924924msgstr ""
    925925
    926 #: admin/apwp-woocommerce-tab.php:66
     926#: admin/apwp-woocommerce-tab.php:65
    927927msgid ""
    928928"These figures are automatically updated when you make any changes to a "
     
    931931msgstr ""
    932932
    933 #: admin/apwp-woocommerce-tab.php:69
     933#: admin/apwp-woocommerce-tab.php:68
    934934msgid ""
    935935"<b>NOTE:</b> Any changes made to a product listing are reflected when the "
     
    938938msgstr ""
    939939
    940 #: admin/apwp-woocommerce-tab.php:91
     940#: admin/apwp-woocommerce-tab.php:73
     941msgid "Manually reset Products to Tweet list"
     942msgstr ""
     943
     944#: admin/apwp-woocommerce-tab.php:93
    941945msgid "Select which categories to use when auto posting products to Twitter."
    942946msgstr ""
    943947
    944 #: admin/apwp-woocommerce-tab.php:115
     948#: admin/apwp-woocommerce-tab.php:117
    945949msgid "Select your product categories"
    946950msgstr ""
    947951
    948 #: admin/apwp-woocommerce-tab.php:119
     952#: admin/apwp-woocommerce-tab.php:121
    949953msgid ""
    950954"The categories you select will allow all products within those categories to "
     
    952956msgstr ""
    953957
    954 #: admin/apwp-woocommerce-tab.php:154
     958#: admin/apwp-woocommerce-tab.php:156
    955959#: admin/includes/apwp-list-table-functions.php:144
    956960#: admin/includes/apwp-list-table-functions.php:156
     
    960964msgstr ""
    961965
    962 #: admin/apwp-woocommerce-tab.php:157
     966#: admin/apwp-woocommerce-tab.php:159
    963967msgid "Select none"
    964968msgstr ""
    965969
    966 #: admin/apwp-woocommerce-tab.php:161
     970#: admin/apwp-woocommerce-tab.php:163
    967971msgid "Please select at least one category."
    968972msgstr ""
     
    12301234msgstr ""
    12311235
    1232 #: admin/auto-post-woocommerce-products-settings.php:366
    1233 #: admin/auto-post-woocommerce-products-settings.php:383
     1236#: admin/auto-post-woocommerce-products-settings.php:361
     1237#: admin/auto-post-woocommerce-products-settings.php:378
    12341238msgid "Products per page"
    12351239msgstr ""
     
    12631267msgstr ""
    12641268
    1265 #: admin/auto-post-woocommerce-products-tabs.php:199
     1269#: admin/auto-post-woocommerce-products-tabs.php:202
    12661270msgid "Product Sharing"
    12671271msgstr ""
    12681272
    1269 #: admin/auto-post-woocommerce-products-tabs.php:202
     1273#: admin/auto-post-woocommerce-products-tabs.php:205
    12701274msgid "Share products to your social media accounts."
    12711275msgstr ""
    12721276
    1273 #: admin/auto-post-woocommerce-products-tabs.php:240
     1277#: admin/auto-post-woocommerce-products-tabs.php:243
    12741278#: admin/includes/pro/apwp-quick-edit.php:72
    12751279msgid "Previous page"
    12761280msgstr ""
    12771281
    1278 #: admin/auto-post-woocommerce-products-tabs.php:245
     1282#: admin/auto-post-woocommerce-products-tabs.php:248
    12791283msgid ""
    12801284"Click one of the social media buttons below to begin sharing your product. "
     
    12831287msgstr ""
    12841288
    1285 #: admin/auto-post-woocommerce-products-tabs.php:275
     1289#: admin/auto-post-woocommerce-products-tabs.php:278
    12861290msgid "none"
    12871291msgstr ""
    12881292
    1289 #: admin/auto-post-woocommerce-products-tabs.php:302
     1293#: admin/auto-post-woocommerce-products-tabs.php:305
    12901294#: admin/includes/apwp-add-social-icons.php:49
    12911295msgid "discount"
    12921296msgstr ""
    12931297
    1294 #: admin/auto-post-woocommerce-products-tabs.php:331
     1298#: admin/auto-post-woocommerce-products-tabs.php:334
    12951299msgid "not available"
    12961300msgstr ""
    12971301
    1298 #: admin/auto-post-woocommerce-products-tabs.php:334
     1302#: admin/auto-post-woocommerce-products-tabs.php:337
    12991303msgid "No description available"
    13001304msgstr ""
    13011305
    1302 #: admin/auto-post-woocommerce-products-tabs.php:341
     1306#: admin/auto-post-woocommerce-products-tabs.php:344
    13031307msgid "Click any details to copy product information to the clipboard."
    13041308msgstr ""
    13051309
    1306 #: admin/auto-post-woocommerce-products-tabs.php:355
     1310#: admin/auto-post-woocommerce-products-tabs.php:358
    13071311msgid "Description"
    13081312msgstr ""
    13091313
    1310 #: admin/auto-post-woocommerce-products-tabs.php:359
     1314#: admin/auto-post-woocommerce-products-tabs.php:362
    13111315#: admin/includes/pro/apwp-quick-edit.php:780
    13121316msgid "Hashtags"
    13131317msgstr ""
    13141318
    1315 #: admin/auto-post-woocommerce-products-tabs.php:369
     1319#: admin/auto-post-woocommerce-products-tabs.php:372
    13161320msgid "Bitly short link"
    13171321msgstr ""
    13181322
    1319 #: admin/auto-post-woocommerce-products-tabs.php:374
     1323#: admin/auto-post-woocommerce-products-tabs.php:377
    13201324msgid "This is a parent product."
    13211325msgstr ""
    13221326
    1323 #: admin/auto-post-woocommerce-products-tabs.php:379
     1327#: admin/auto-post-woocommerce-products-tabs.php:382
    13241328msgid "Product variation:"
    13251329msgstr ""
    13261330
    1327 #: admin/auto-post-woocommerce-products-tabs.php:386
    1328 #: admin/includes/apwp-list-table-functions.php:1750
     1331#: admin/auto-post-woocommerce-products-tabs.php:389
     1332#: admin/includes/apwp-list-table-functions.php:1786
    13291333#: admin/includes/pro/apwp-quick-edit.php:664
    13301334msgid "Regular price"
    13311335msgstr ""
    13321336
    1333 #: admin/auto-post-woocommerce-products-tabs.php:390
    1334 #: admin/includes/apwp-list-table-functions.php:1751
     1337#: admin/auto-post-woocommerce-products-tabs.php:393
     1338#: admin/includes/apwp-list-table-functions.php:1787
    13351339#: admin/includes/pro/apwp-quick-edit.php:678
    13361340msgid "Sale price"
    13371341msgstr ""
    13381342
    1339 #: admin/auto-post-woocommerce-products-tabs.php:394
    1340 #: admin/includes/apwp-list-table-functions.php:1752
     1343#: admin/auto-post-woocommerce-products-tabs.php:397
     1344#: admin/includes/apwp-list-table-functions.php:1788
    13411345#: admin/includes/pro/apwp-quick-edit.php:692
    13421346msgid "Current price"
    13431347msgstr ""
    13441348
    1345 #: admin/auto-post-woocommerce-products-tabs.php:405
     1349#: admin/auto-post-woocommerce-products-tabs.php:408
    13461350msgid "Discount tag line"
    13471351msgstr ""
     
    13571361msgstr ""
    13581362
    1359 #: admin/includes/apwp-check-setup.php:101
     1363#: admin/includes/apwp-check-setup.php:105
    13601364#, php-format
    13611365msgid ""
     
    13651369msgstr ""
    13661370
    1367 #: admin/includes/apwp-check-setup.php:110
     1371#: admin/includes/apwp-check-setup.php:114
    13681372msgid ""
    13691373"Please set a schedule to enable auto posting to Twitter, or disable auto "
     
    13711375msgstr ""
    13721376
    1373 #: admin/includes/apwp-check-setup.php:140
     1377#: admin/includes/apwp-check-setup.php:144
    13741378msgid ""
    13751379"Please check your Twitter and Bitly codes on the Twitter tab. There are "
     
    13771381msgstr ""
    13781382
    1379 #: admin/includes/apwp-check-setup.php:156
     1383#: admin/includes/apwp-check-setup.php:160
    13801384msgid "Please select at least one product category on the CATEGORY TAB."
    13811385msgstr ""
     
    14711475msgstr ""
    14721476
    1473 #: admin/includes/apwp-debug.php:26
     1477#: admin/includes/apwp-debug.php:25
    14741478msgid "APWCP status page"
    14751479msgstr ""
    14761480
    1477 #: admin/includes/apwp-debug.php:34
     1481#: admin/includes/apwp-debug.php:33
    14781482msgid "APWCP status information"
    14791483msgstr ""
    14801484
    1481 #: admin/includes/apwp-debug.php:38
     1485#: admin/includes/apwp-debug.php:37
    14821486msgid "Current settings and values"
    14831487msgstr ""
    14841488
    1485 #: admin/includes/apwp-debug.php:177
     1489#: admin/includes/apwp-debug.php:176
    14861490msgid "Log Files"
    14871491msgstr ""
    14881492
    1489 #: admin/includes/apwp-debug.php:254
     1493#: admin/includes/apwp-debug.php:253
    14901494msgid "Copy data to clipboard"
    14911495msgstr ""
    14921496
    1493 #: admin/includes/apwp-debug.php:446
     1497#: admin/includes/apwp-debug.php:445
    14941498msgid "Disable WP_DEBUG"
    14951499msgstr ""
    14961500
    1497 #: admin/includes/apwp-debug.php:450
     1501#: admin/includes/apwp-debug.php:449
    14981502msgid "Enable WP_DEBUG"
    14991503msgstr ""
    15001504
    1501 #: admin/includes/apwp-debug.php:459
     1505#: admin/includes/apwp-debug.php:458
    15021506msgid "Debug mode set, refreshing page. . ."
    15031507msgstr ""
    15041508
    1505 #: admin/includes/apwp-debug.php:463
     1509#: admin/includes/apwp-debug.php:462
    15061510msgid "Failed to set WP_DEBUG! Please try again."
    15071511msgstr ""
    15081512
    1509 #: admin/includes/apwp-debug.php:501
     1513#: admin/includes/apwp-debug.php:500
    15101514#, php-format
    15111515msgid ""
     
    15151519msgstr ""
    15161520
    1517 #: admin/includes/apwp-debug.php:509
     1521#: admin/includes/apwp-debug.php:508
    15181522msgid ""
    15191523"You may click the button below to Enable/Disable WP_DEBUG and the WP_DEBUG "
     
    15241528msgstr ""
    15251529
    1526 #: admin/includes/apwp-debug.php:512
     1530#: admin/includes/apwp-debug.php:511
    15271531msgid "Check this box to enable WP_DEBUG_DISPLAY."
    15281532msgstr ""
    15291533
    1530 #: admin/includes/apwp-debug.php:516
     1534#: admin/includes/apwp-debug.php:515
    15311535msgid "Enable WP_DEBUG_DISPLAY"
    15321536msgstr ""
     
    15341538#: admin/includes/apwp-display-product-list.php:49
    15351539#: admin/includes/apwp-list-table-functions.php:151
    1536 #: admin/includes/apwp-list-table-functions.php:1748
     1540#: admin/includes/apwp-list-table-functions.php:1784
    15371541#: admin/includes/pro/apwp-stats-table-functions.php:25
    15381542msgid "Category"
     
    19551959msgstr ""
    19561960
    1957 #: admin/includes/apwp-list-table-functions.php:1744
     1961#: admin/includes/apwp-list-table-functions.php:1780
    19581962#: admin/includes/pro/apwp-quick-edit.php:558
    19591963#: admin/includes/pro/class-apwp-stats-table.php:142
     
    19611965msgstr ""
    19621966
    1963 #: admin/includes/apwp-list-table-functions.php:1745
     1967#: admin/includes/apwp-list-table-functions.php:1781
    19641968#: admin/includes/pro/class-apwp-stats-table.php:143
    19651969msgid "Image"
    19661970msgstr ""
    19671971
    1968 #: admin/includes/apwp-list-table-functions.php:1747
     1972#: admin/includes/apwp-list-table-functions.php:1783
    19691973msgid "Type"
    19701974msgstr ""
    19711975
    1972 #: admin/includes/apwp-list-table-functions.php:1749
     1976#: admin/includes/apwp-list-table-functions.php:1785
    19731977#: admin/includes/pro/apwp-quick-edit.php:1076
    19741978msgid "Stock status"
    19751979msgstr ""
    19761980
    1977 #: admin/includes/apwp-list-table-functions.php:1753
     1981#: admin/includes/apwp-list-table-functions.php:1789
    19781982msgid "Sold"
    19791983msgstr ""
    19801984
    1981 #: admin/includes/apwp-list-table-functions.php:1754
     1985#: admin/includes/apwp-list-table-functions.php:1790
    19821986msgid "Sharing"
    19831987msgstr ""
    19841988
    1985 #: admin/includes/apwp-list-table-functions.php:1775
     1989#: admin/includes/apwp-list-table-functions.php:1811
    19861990#: admin/includes/pro/apwp-quick-edit.php:821
    19871991msgid "Sale dates"
     
    21052109
    21062110#: admin/includes/display-quick-start-tab.php:59
    2107 msgid ""
    2108 "Added Bulk Actions to the Product list tab. The ability to edit products "
    2109 "with bulk edit is currently being added to the plugin."
     2111msgid "Added button to manually reset the products to Tweet list."
    21102112msgstr ""
    21112113
    21122114#: admin/includes/display-quick-start-tab.php:60
    21132115msgid ""
    2114 "Fixed the issues with the auto poster; showing incorrect number of products, "
    2115 "re-posting the same product right after it was posted, reseting the products "
    2116 "to post list when it was not time. "
    2117 msgstr ""
    2118 
    2119 #: admin/includes/display-quick-start-tab.php:61
    2120 msgid ""
    2121 "Fixed issue when changing the auto post schedule, the screen would refresh "
    2122 "over and over."
     2116"Fixed a few other issues including retrieving Bitly shortlinks which had "
     2117"stopped working."
    21232118msgstr ""
    21242119
Note: See TracChangeset for help on using the changeset viewer.