Changeset 2306331
- Timestamp:
- 05/16/2020 05:28:48 PM (6 years ago)
- Location:
- woo-oscommerce-sync/trunk
- Files:
-
- 6 edited
-
languages/woocommerce-osc-sync-en_US.mo (modified) (previous)
-
languages/woocommerce-osc-sync-en_US.po (modified) (3 diffs)
-
languages/woocommerce-osc-sync-es_ES.mo (modified) (previous)
-
languages/woocommerce-osc-sync-es_ES.po (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
-
woocommerce-osc-sync.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-oscommerce-sync/trunk/languages/woocommerce-osc-sync-en_US.po
r1920378 r2306331 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2018-08-02 12:40+0000\n" 6 "PO-Revision-Date: 20 18-08-06 11:57+0000\n"6 "PO-Revision-Date: 2020-05-16 19:13+0200\n" 7 7 "Last-Translator: Alejandro Aranda (alejandro@aaranda.es)\n" 8 8 "Language-Team: English (United States)\n" … … 12 12 "Content-Type: text/plain; charset=UTF-8\n" 13 13 "Content-Transfer-Encoding: 8bit\n" 14 "X-Generator: Loco https://localise.biz/"14 "X-Generator: Poedit 2.3.1\n" 15 15 16 16 #: woocommerce-osc-sync.php:830 … … 137 137 msgstr "(Display and save a log file in WordPress root folder)" 138 138 139 msgid "The oscommerce data was successfully imported" 140 msgstr "The oscommerce data was successfully imported" 141 139 142 msgid "Import Data" 140 143 msgstr "Import Data" -
woo-oscommerce-sync/trunk/languages/woocommerce-osc-sync-es_ES.po
r1920378 r2306331 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2018-08-02 12:40+0000\n" 6 "PO-Revision-Date: 20 18-08-06 11:56+0000\n"6 "PO-Revision-Date: 2020-05-16 19:12+0200\n" 7 7 "Last-Translator: Alejandro Aranda (alejandro@aaranda.es)\n" 8 8 "Language-Team: Español\n" … … 12 12 "Content-Type: text/plain; charset=UTF-8\n" 13 13 "Content-Transfer-Encoding: 8bit\n" 14 "X-Generator: Loco https://localise.biz/"14 "X-Generator: Poedit 2.3.1\n" 15 15 16 16 #: woocommerce-osc-sync.php:830 … … 130 130 131 131 msgid "how many products imported" 132 msgstr " Cuantos productos importar en este paso"132 msgstr "cuantos productos importar en este paso" 133 133 134 134 msgid "Customers (passwords will not be transferred)" 135 msgstr "" 136 "Clientes (las contraseñas no serán transferidas).\n" 137 " " 135 msgstr "Clientes (las contraseñas no serán transferidas)." 138 136 139 137 msgid "(Display and save a log file in WordPress root folder)" … … 141 139 "(Visualiza y guarda un archivo de registro en la carpeta raíz de WordPress)" 142 140 141 msgid "The oscommerce data was successfully imported" 142 msgstr "Los datos de oscommerce se importaron correctamente" 143 143 144 msgid "Import Data" 144 145 msgstr "Importar datos" -
woo-oscommerce-sync/trunk/readme.txt
r1943527 r2306331 4 4 Tags: woocommerce, oscommerce, import, sync 5 5 Requires at least: 3.5.1 6 Tested up to: 4.9.4–es_ES6 Tested up to: 5.4.1–es_ES 7 7 Stable tag: 2.0.10 8 8 License: AGPLv3.0 or later … … 70 70 71 71 == Changelog == 72 = 2.0.20 = 73 * No require address in oscommerce customer. 74 75 76 72 77 = 2.0.10 = 73 78 * Include sql query for import products in the log file, for debug users problems. -
woo-oscommerce-sync/trunk/woocommerce-osc-sync.php
r1943527 r2306331 7 7 Description: Import products, categories, customers and orders from osCommerce to Woocommerce 8 8 Author: Alejandro Aranda 9 Version: 2.0. 109 Version: 2.0.20 10 10 Author URI: http://www.aaranda.es 11 11 Original Author: David Barnes … … 212 212 ab.entry_zone_id 213 213 FROM customers c 214 INNERJOIN address_book ab ON c.customers_id=ab.customers_id AND c.customers_default_address_id=ab.address_book_id214 LEFT JOIN address_book ab ON c.customers_id=ab.customers_id AND c.customers_default_address_id=ab.address_book_id 215 215 "; 216 216 if ($customers = $oscdb->get_results($sql, ARRAY_A)) { … … 789 789 <div class="col-lg-12"> 790 790 <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> 792 792 <?php 793 793 if ((int) $_POST['dtype']['customers'] == 1) {
Note: See TracChangeset
for help on using the changeset viewer.