Plugin Directory

Changeset 2292791


Ignore:
Timestamp:
04/27/2020 04:39:05 PM (6 years ago)
Author:
Sebas2
Message:

Update of translations

Location:
s2-woocommerce-ean/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • s2-woocommerce-ean/trunk/readme.txt

    r2292722 r2292791  
    5454
    5555* Fixed an issue where plugin would be deactivated when language files are loaded
     56
     57= 0.0.7 =
     58
     59* Added more translations
  • s2-woocommerce-ean/trunk/s2_woocommerce_ean.php

    r2292718 r2292791  
    44    Plugin URI:
    55    Description: Add EAN/GTIN field to woocommerce products, must have for google Merchant shop
    6     Version: 0.0.6
     6    Version: 0.0.7
    77    Author: Sebas2
    88    Author URI: http://www.sebas2.nl
    99    License: 
    10     Text Domain: s2_woocommerce_ean
     10    Text Domain: s2-woocommerce-ean
    1111*/
    1212if ( ! defined( 'ABSPATH' ) ) {
     
    7373            ?>   
    7474            <div class="notice notice-warning">
    75                 <p><?php _e('(S2_woocommerce_EAN) we need Woocommerce to be installed.', 's2_woocommerce_ean') ?></p>
     75                <p><?php _e('(S2_woocommerce_EAN) we need Woocommerce to be installed.', 's2-woocommerce-ean') ?></p>
    7676            </div>
    7777            <?php
     
    107107            'name' => 's2_woocommerce_ean_field[' . $loop . ']',
    108108            'class' => 'short s2_woocommerce_ean_field',
    109             'label' => __( 'EAN/gTIN field', 's2_woocommerce_ean' ),
     109            'label' => __( 'EAN/gTIN field', 's2-woocommerce-ean' ),
    110110            'desc_tip'      => true,
    111             'description'   => __( 'Gebruik dit veld voor de EAN code van een product.', 's2_woocommerce_ean' ),
     111            'description'   => __( 'Gebruik dit veld voor de EAN code van een product.', 's2-woocommerce-ean' ),
    112112            'value' => get_post_meta( $variation->ID, 's2_woocommerce_ean_field', true ),
    113113            'wrapper_class' => 'form-row form-row-full',
     
    142142        $args = array(
    143143            'id'            => 's2_woocommerce_ean_field',
    144             'label'         => __( 'EAN', 's2_woocommerce_ean' ),
     144            'label'         => __( 'EAN', 's2-woocommerce-ean' ),
    145145            'class'         => 's2_woocommerce-ean-field',
    146146            'desc_tip'      => true,
    147             'description'   => __( 'Gebruik dit veld voor de EAN code van een product.', 's2_woocommerce_ean' ),
     147            'description'   => __( 'Gebruik dit veld voor de EAN code van een product.', 's2-woocommerce-ean' ),
    148148        );
    149149        woocommerce_wp_text_input( $args );
Note: See TracChangeset for help on using the changeset viewer.