Page 4 of 4 FirstFirst ... 234
Results 31 to 36 of 36
  1. #31
    Join Date
    Jun 2008
    Location
    Japan
    Posts
    133
    Plugin Contributions
    5

    Default Re: V158 Japanese language pack

    A new release is there, v1.3.2 available on GitHub. 新しいリリース v1.3.2 が GitHub で入手可能です。
    https://github.com/piloujp/ZenCartv1...ses/tag/v1.3.2
    I submitted it to Plugin section too.
    There are two bugs fixes, one in admin that prevented to display multiple pages in few admin listings and the other one fixes shipping estimator bug when only one item in cart, quote for Yamato, Sagawa and YuPack was 0.
    Some left over translations in admin are now done.
    Documentation has been improved too and lots of cleaning has been done.

  2. #32
    Join Date
    Jun 2008
    Location
    Japan
    Posts
    133
    Plugin Contributions
    5

    Default Re: V158 Japanese language pack

    Shipping class for Yamato has been updated to October 2023 new (increased) fees...
    You can find this update on Github here.

  3. #33
    Join Date
    Jun 2008
    Location
    Japan
    Posts
    133
    Plugin Contributions
    5

    Default Re: V158 Japanese language pack

    Japanese Language Pack version 2.0.0 for Zen Cart v2.0.0-alpha1 is available on Github.
    Zen Cart v2.0.0-alpha1 の日本語言語パック バージョン 2.0.0 は、Githubで入手できます。

    Fresh install and update from ZC v2.0.0-alpha1 work fine with installer. Updating from older versions, Japanese or not should be done manually.
    Japanese zones that were double in database for Kanji and alphabet writing are now unique. This dual writing is now handle in code. There is still a problem to update from old data as zone ids change. I am working on an sql update query for that.
    Until this is done, this version is for new install of Zen Cart or old English versions updated to V2.0.0-alpha1.

  4. #34
    Join Date
    Jun 2008
    Location
    Japan
    Posts
    133
    Plugin Contributions
    5

    Default Re: V158 Japanese language pack

    The Japanese language pack v2.0.0 for the new Zen Cart version 2.0.0 is ready.
    You can download it on GitHub here.
    It will be soon available in plugin section too.
    日本語言語パックをGitHubで公開しました。 ぜひお試しください。間もなくプラグインセクションでも利用できるようになる予定です。

  5. #35
    Join Date
    Apr 2019
    Location
    shanghai
    Posts
    26
    Plugin Contributions
    0

    Default Re: V158 Japanese language pack

    zencart 2.0
    php 8.3
    one_page_checkout-2.5.1
    ZC200LangPack_JP_2.0.0[japanese]
    Q:
    After the module is uploaded, the zencart backend cannot log in, prompting this error.

    HTML Code:
    --> PHP Fatal error: MySQL error 1364: Field 'entry_telephone' doesn't have a default value :: INSERT INTO address_book (customers_id, entry_firstname, entry_lastname, entry_street_address, entry_country_id, entry_zone_id) VALUES ('2', 'Guest', 'Customer, **do not remove**', 'Default billing address', '107', '293') ==> (as called by) /home/xxx/public_html/includes/functions/database.php on line 134 <== in /home/xxx/public_html/includes/classes/db/mysql/query_factory.php on line 714.
    A:
    Update database fields
    ALTER TABLE `address_book` CHANGE `entry_telephone` `entry_telephone` VARCHAR(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL;


    I carefully checked all the files and found that this field is in the Japanese language module
    HTML Code:
    ZC200LangPack_JP\zc_install\sql\plugins\mysql_japanese_install.sql
    ZC200LangPack_JP\sql\mysql_japanese_install.sql
    in 75 line
    ALTER TABLE address_book ADD COLUMN entry_telephone varchar(32) NOT NULL;
    
    
    ZC200LangPack_JP\zc_install\sql\updates\mysql_upgrade_zencart_200200.sql
    ZC200LangPack_JP\sql\mysql_upgrade_zencart_200200.sql
    in 75 line
    ALTER TABLE address_book ADD COLUMN entry_telephone varchar(32) NOT NULL;
    
    
    php file using this field:
    ZC200LangPack_JP\admin\customers.php
    ZC200LangPack_JP\admin-JP\customers.php
    ZC200LangPack_JP\includes\classes\Customer.php
    ZC200LangPack_JP\includes\classes\order.php
    ZC200LangPack_JP\includes\functions\functions_addresses.php
    ZC200LangPack_JP\includes\modules\checkout_new_address.php
    ZC200LangPack_JP\includes\modules\pages\address_book_process\header_php.php

  6. #36
    Join Date
    Jun 2008
    Location
    Japan
    Posts
    133
    Plugin Contributions
    5

    Default Re: V158 Japanese language pack

    Quote Originally Posted by ikirin View Post
    zencart 2.0
    php 8.3
    one_page_checkout-2.5.1
    ZC200LangPack_JP_2.0.0[japanese]
    Q:
    After the module is uploaded, the zencart backend cannot log in, prompting this error.

    HTML Code:
    --> PHP Fatal error: MySQL error 1364: Field 'entry_telephone' doesn't have a default value :: INSERT INTO address_book (customers_id, entry_firstname, entry_lastname, entry_street_address, entry_country_id, entry_zone_id) VALUES ('2', 'Guest', 'Customer, **do not remove**', 'Default billing address', '107', '293') ==> (as called by) /home/xxx/public_html/includes/functions/database.php on line 134 <== in /home/xxx/public_html/includes/classes/db/mysql/query_factory.php on line 714.
    A:
    Update database fields
    ALTER TABLE `address_book` CHANGE `entry_telephone` `entry_telephone` VARCHAR(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL;


    I carefully checked all the files and found that this field is in the Japanese language module
    HTML Code:
    ZC200LangPack_JP\zc_install\sql\plugins\mysql_japanese_install.sql
    ZC200LangPack_JP\sql\mysql_japanese_install.sql
    in 75 line
    ALTER TABLE address_book ADD COLUMN entry_telephone varchar(32) NOT NULL;
    
    
    ZC200LangPack_JP\zc_install\sql\updates\mysql_upgrade_zencart_200200.sql
    ZC200LangPack_JP\sql\mysql_upgrade_zencart_200200.sql
    in 75 line
    ALTER TABLE address_book ADD COLUMN entry_telephone varchar(32) NOT NULL;
    
    
    php file using this field:
    ZC200LangPack_JP\admin\customers.php
    ZC200LangPack_JP\admin-JP\customers.php
    ZC200LangPack_JP\includes\classes\Customer.php
    ZC200LangPack_JP\includes\classes\order.php
    ZC200LangPack_JP\includes\functions\functions_addresses.php
    ZC200LangPack_JP\includes\modules\checkout_new_address.php
    ZC200LangPack_JP\includes\modules\pages\address_book_process\header_php.php
    This error message appears when MySQL is in STRICT mode. There are two way to fix it:
    1- Edit my.ini (or my.conf on Linux) and remove STRICT_ALL_TABLES mode. You should have
    Code:
    sql_mode=""
    .
    2- Set Null column to yes and default value to NULL in database for field entry_telephone in table address_book. But then you still might have the same error with other fields.
    I modified install file so it does not happen again.

 

 
Page 4 of 4 FirstFirst ... 234

Similar Threads

  1. Japanese Language Pack problem
    By i.chan in forum Addon Language Packs
    Replies: 1
    Last Post: 14 Jun 2009, 11:21 PM
  2. Japanese Language Pack
    By namasa in forum Addon Language Packs
    Replies: 74
    Last Post: 22 Dec 2008, 03:29 PM
  3. japanese language pack...
    By fish_who in forum Addon Language Packs
    Replies: 1
    Last Post: 10 Aug 2006, 04:20 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR