Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 43
  1. #11
    Join Date
    Dec 2007
    Posts
    34
    Plugin Contributions
    0

    Default Re: French language pack 1.3.8 availability

    I am doing corrections on a customer's 1.3.7 ZenCart french texts. I am trying to get rid of the "VotreNomDeDomaine.com, votre référence" Appearing on the site. I found that the one in the title bar is from:
    /includes/languages/french/meta_tags.php
    But I can't find the one that puts the same text on the home page. Does any of you know?

  2. #12
    Join Date
    Jan 2007
    Posts
    27
    Plugin Contributions
    1

    Default Re: French language pack 1.3.8 availability

    Here is the list of files to edit :

    - includes/languages/french/header.php
    - includes/languages/french/email_extras.php
    - includes/languages/french/html_includes/define_checkout_success.php
    - includes/languages/french/html_includes/define_conditions.php
    - includes/languages/french/html_includes/define_contact_us.php
    - includes/languages/french/html_includes/define_discount_coupon.php
    - includes/languages/french/html_includes/define_main_page.php
    - includes/languages/french/html_includes/define_page_2.php (optionnel)
    - includes/languages/french/html_includes/define_page_3.php (optionnel)
    - includes/languages/french/html_includes/define_page_4.php (optionnel)
    - includes/languages/french/html_includes/define_page_not_found.php
    - includes/languages/french/html_includes/define_privacy.php
    - includes/languages/french/html_includes/define_shippinginfo.php
    - includes/languages/french/html_includes/define_site_map.php (optionnel) (a revoir)
    - includes/languages/french/index.php
    - includes/languages/french/meta_tags.php
    - includes/languages/french.php
    - includes/languages/french/classic/header.php

  3. #13
    Join Date
    Apr 2006
    Location
    France
    Posts
    53
    Plugin Contributions
    0

    Default Re: French language pack 1.3.8 availability

    I had that problem and finally fixed it, but can i remember how this is what I can remember

    it was in the french.php

    on line 17 change :
    define('FOOTER_TEXT_BODY', 'Copyright &copy; 2007 <a href="Votre nom de domaine.com" target="_blank">Votre référence</a>. Powered by <a href="Votre nom de domaine.com" target="_blank">Zen Cart</a>');


    to this:
    define('FOOTER_TEXT_BODY', 'Copyright &copy; ' . date('Y') . ' <a href="' . zen_href_link(FILENAME_DEFAULT) . '" target="_blank">' . STORE_NAME . '</a>. Powered by <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a>');

    hope that does it, i seem to remember there were 2 things to change?

    Pots

  4. #14
    Join Date
    Apr 2006
    Location
    France
    Posts
    53
    Plugin Contributions
    0

    Default Re: French language pack 1.3.8 availability

    Quote Originally Posted by nuroweb View Post
    I am doing corrections on a customer's 1.3.7 ZenCart french texts. I am trying to get rid of the "VotreNomDeDomaine.com, votre référence" Appearing on the site. I found that the one in the title bar is from:
    /includes/languages/french/meta_tags.php
    But I can't find the one that puts the same text on the home page. Does any of you know?
    And I have just remembered the second change I made was in the french index.php line 47

    define('HEADING_TITLE', 'VotreNomDeDomaine.com, votre r&eacute;f&eacute;rence');
    } elseif ($category_depth == 'nested') {
    // This section deals with displaying a subcategory
    /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', 'VotreNomDeDomaine.com, votre r&eacute;f&eacute;rence'); /*Replace this line with the headline you would like for your shop. For example: Welcome to My SHOP!*/
    }

    Pots

  5. #15
    Join Date
    Dec 2007
    Posts
    34
    Plugin Contributions
    0

    Default Re: French language pack 1.3.8 availability

    Thanks for your help guys. I was able to do all the changes for the customer site.

    I havent's been able to find out how to change the title bar text in the admin tough. It's currently:
    EN: ZenCart!
    FR: VotreNomdDeDomaine.com

    I did a search of "Domaine" in all the files in:
    /admin/includes/languages/

  6. #16
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,655
    Plugin Contributions
    25

    Default Re: French language pack 1.3.8 availability

    You can't change that in the Admin. It's normally in includes/languages/english/header.php or, of course, includes/languages/french/header.php
    See and test drive Zen Cart's free templates at zencarttemplates.info

    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  7. #17
    Join Date
    Dec 2007
    Posts
    34
    Plugin Contributions
    0

    Default Re: French language pack 1.3.8 availability

    Quote Originally Posted by kuroi View Post
    You can't change that in the Admin. It's normally in includes/languages/english/header.php or, of course, includes/languages/french/header.php
    Wouldn't those files be the ones for the customer site? I don't want to deliver a site with the "VoteNomDeDomaine.com" in the title bar. It doesn't look professional, even if it's the admin module and not the customer site.

  8. #18
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,655
    Plugin Contributions
    25

    Default Re: French language pack 1.3.8 availability

    Apologies. I thought you were looking for somewhere in the Admin where you could change the title bar, rather than the Admin's title bar.

    See and test drive Zen Cart's free templates at zencarttemplates.info

    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  9. #19
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,655
    Plugin Contributions
    25

    Default Re: French language pack 1.3.8 availability

    In 1.3.7.1, Zen cart uses the Catalog's meta_tags.php definition of TITLE for both Catalog and Admin. I haven't tested 1.3.8, but have no reason to believe that it's different.
    See and test drive Zen Cart's free templates at zencarttemplates.info

    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  10. #20
    Join Date
    Apr 2006
    Location
    France
    Posts
    53
    Plugin Contributions
    0

    Default Re: French language pack 1.3.8 availability

    Quote Originally Posted by nuroweb View Post
    Thanks for your help guys. I was able to do all the changes for the customer site.

    I havent's been able to find out how to change the title bar text in the admin tough. It's currently:
    EN: ZenCart!
    FR: VotreNomdDeDomaine.com

    I did a search of "Domaine" in all the files in:
    /admin/includes/languages/


    includes/languages/french/meta_tags.php is out of date .I have replaced it with the english one and it works fine, there is not much to translate.

    Pots
    Last edited by pots; 23 Jan 2008 at 08:36 PM. Reason: correction

 

 
Page 2 of 5 FirstFirst 1234 ... LastLast

Similar Threads

  1. Internet Explorer 7.0 Released - HELP!
    By mafiasam in forum Templates, Stylesheets, Page Layout
    Replies: 63
    Last Post: 29 Jun 2009, 03:51 AM
  2. trouble with spanish language pack
    By wseyller in forum Addon Language Packs
    Replies: 0
    Last Post: 10 Jan 2007, 04:09 PM
  3. Upgrading Portuguese Language pack for new Zen help...
    By dandownunder in forum Addon Language Packs
    Replies: 4
    Last Post: 5 Dec 2006, 10:59 PM

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
  •