Plugin Directory

Changeset 2306331


Ignore:
Timestamp:
05/16/2020 05:28:48 PM (6 years ago)
Author:
alexwing
Message:
  • Client not nedd address
  • Fix translations
Location:
woo-oscommerce-sync/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • woo-oscommerce-sync/trunk/languages/woocommerce-osc-sync-en_US.po

    r1920378 r2306331  
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2018-08-02 12:40+0000\n"
    6 "PO-Revision-Date: 2018-08-06 11:57+0000\n"
     6"PO-Revision-Date: 2020-05-16 19:13+0200\n"
    77"Last-Translator: Alejandro Aranda (alejandro@aaranda.es)\n"
    88"Language-Team: English (United States)\n"
     
    1212"Content-Type: text/plain; charset=UTF-8\n"
    1313"Content-Transfer-Encoding: 8bit\n"
    14 "X-Generator: Loco https://localise.biz/"
     14"X-Generator: Poedit 2.3.1\n"
    1515
    1616#: woocommerce-osc-sync.php:830
     
    137137msgstr "(Display and save a log file in WordPress root folder)"
    138138
     139msgid "The oscommerce data was successfully imported"
     140msgstr "The oscommerce data was successfully imported"
     141
    139142msgid "Import Data"
    140143msgstr "Import Data"
  • woo-oscommerce-sync/trunk/languages/woocommerce-osc-sync-es_ES.po

    r1920378 r2306331  
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2018-08-02 12:40+0000\n"
    6 "PO-Revision-Date: 2018-08-06 11:56+0000\n"
     6"PO-Revision-Date: 2020-05-16 19:12+0200\n"
    77"Last-Translator: Alejandro Aranda (alejandro@aaranda.es)\n"
    88"Language-Team: Español\n"
     
    1212"Content-Type: text/plain; charset=UTF-8\n"
    1313"Content-Transfer-Encoding: 8bit\n"
    14 "X-Generator: Loco https://localise.biz/"
     14"X-Generator: Poedit 2.3.1\n"
    1515
    1616#: woocommerce-osc-sync.php:830
     
    130130
    131131msgid "how many products imported"
    132 msgstr "Cuantos productos importar en este paso"
     132msgstr "cuantos productos importar en este paso"
    133133
    134134msgid "Customers (passwords will not be transferred)"
    135 msgstr ""
    136 "Clientes (las contraseñas no serán transferidas).\n"
    137 " "
     135msgstr "Clientes (las contraseñas no serán transferidas)."
    138136
    139137msgid "(Display and save a log file in WordPress root folder)"
     
    141139"(Visualiza y guarda un archivo de registro en la carpeta raíz de WordPress)"
    142140
     141msgid "The oscommerce data was successfully imported"
     142msgstr "Los datos de oscommerce se importaron correctamente"
     143
    143144msgid "Import Data"
    144145msgstr "Importar datos"
  • woo-oscommerce-sync/trunk/readme.txt

    r1943527 r2306331  
    44Tags: woocommerce, oscommerce, import, sync
    55Requires at least: 3.5.1
    6 Tested up to: 4.9.4–es_ES
     6Tested up to: 5.4.1–es_ES
    77Stable tag: 2.0.10
    88License: AGPLv3.0 or later
     
    7070
    7171== Changelog ==
     72= 2.0.20 =
     73* No require address in oscommerce customer.
     74
     75
     76
    7277= 2.0.10 =
    7378* Include sql query for import products in the log file, for debug users problems.
  • woo-oscommerce-sync/trunk/woocommerce-osc-sync.php

    r1943527 r2306331  
    77  Description: Import products, categories, customers and orders from osCommerce to Woocommerce
    88  Author: Alejandro Aranda
    9   Version: 2.0.10
     9  Version: 2.0.20
    1010  Author URI: http://www.aaranda.es
    1111  Original Author: David Barnes
     
    212212                              ab.entry_zone_id
    213213                              FROM customers c
    214                               INNER JOIN address_book ab ON  c.customers_id=ab.customers_id AND c.customers_default_address_id=ab.address_book_id
     214                              LEFT JOIN address_book ab ON  c.customers_id=ab.customers_id AND c.customers_default_address_id=ab.address_book_id
    215215                              ";
    216216                    if ($customers = $oscdb->get_results($sql, ARRAY_A)) {
     
    789789                    <div class="col-lg-12">
    790790                        <div class="alert alert-success">
    791                             <h3>The oscommerce data was successfully imported</h3>
     791                            <h3><?php _e('The oscommerce data was successfully imported', 'woocommerce-osc-sync'); ?></h3>
    792792                            <?php
    793793                            if ((int) $_POST['dtype']['customers'] == 1) {
Note: See TracChangeset for help on using the changeset viewer.