Page 2 of 11 FirstFirst 1234 ... LastLast
Results 11 to 20 of 102
  1. #11
    Join Date
    Oct 2010
    Location
    San Juan Puerto Rico
    Posts
    62
    Plugin Contributions
    0

    Default Re: German Language Pack for ZC 1.3.9

    With Version 1.3.9 and the classic theme I am getting a message on all the pages:

    "zu finden in:: includes/german/classic/header.php"

    I checked the includes/Languages/german/classic/ folder and it does have a header file. How would I go about troubleshooting this? Also anyone have any tutorial or info on how all these files compile together? Newbee in the breaking....

  2. #12
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: German Language Pack for ZC 1.3.9

    Quote Originally Posted by shortysclimbin View Post
    With Version 1.3.9 and the classic theme I am getting a message on all the pages:

    "zu finden in:: includes/german/classic/header.php"
    Please post a link to your site

    I checked the includes/Languages/german/classic/ folder and it does have a header file. How would I go about troubleshooting this? Also anyone have any tutorial or info on how all these files compile together? Newbee in the breaking....
    A good starting point are the tutorials and the wiki

  3. #13
    Join Date
    Oct 2010
    Location
    San Juan Puerto Rico
    Posts
    62
    Plugin Contributions
    0

    Default Re: German Language Pack for ZC 1.3.9

    www.performance-diesel.com/products/

    I will change it back to the classic view first. Thank you for the help Frank. Code is all over and a lot to learn.. If anyone has some free time and could explain to me the layout I can throw it in visio to give newbies a good run to chart...

  4. #14
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: German Language Pack for ZC 1.3.9

    Quote Originally Posted by shortysclimbin View Post
    With Version 1.3.9 and the classic theme I am getting a message on all the pages:

    "zu finden in:: includes/german/classic/header.php"

    I checked the includes/Languages/german/classic/ folder and it does have a header file. How would I go about troubleshooting this? Also anyone have any tutorial or info on how all these files compile together? Newbee in the breaking....
    Sorry for the late reply.

    Open your includes/languages/german/classic/header.php file

    Around line 23 you find something like:

    define('HEADER_SALES_TEXT', '<h1>Abverkaufsnachricht hier angeben</h1>zu finden in:: includes/languages/german/classic/header.php');
    Change this to

    define('HEADER_SALES_TEXT', '');
    That will get rid of the sales text. Take care to leave the single quotes intact - don't delete them.

  5. #15
    Join Date
    Oct 2010
    Location
    San Juan Puerto Rico
    Posts
    62
    Plugin Contributions
    0

    Default Re: German Language Pack for ZC 1.3.9

    Thank you Frank! Here is some of code for Captcha that I modified to allow it to display in german. It may not be 100% correct, but I wanted to share it here too. Thanks for the help Frank

    Create a anti_reg_german.php that goes into languages/german/extra_definitions

    <?php
    /**
    * CAPTCHA language components - used when displaying CAPTCHA Validation components
    *
    * @package languageDefines
    * @copyright Copyright 2003-2005 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: captcha_validation_definitions.php 18 2006-08-04 06:08:27Z pd $
    */

    define('CATEGORY_ANTIROBOTREG', 'G&#252ltigkeitserkl&#228rungs-Code');

    define('ENTRY_ANTIROBOTREG', 'Geben Sie bitte den folgenden G&#252ltigkeitserkl&#228rungscode im bereitgestellten Kasten ein:');
    define('ENTRY_ANTIROBOTREG_TEXT', '* (Fall unempfindlich)');
    define('ERROR_VALIDATION', 'St&#246rung:');
    define('ERROR_VALIDATION_1', 'Konnte Ausrichtungsinformationen nicht einholen');
    define('ERROR_VALIDATION_2', 'Sie haben einen unvollst&#228ndigen oder falschen Code der G&#252ltigkeitserkl&#228rung (CAPTCHA) eingegeben.');
    define('ERROR_VALIDATION_3', 'Konnte G&#252ltigkeitserkl&#228rungsschl&#252ssel nicht l&#246schen');
    define('ERROR_VALIDATION_4', 'Konnte Datenbank nicht optimieren');
    define('ERROR_VALIDATION_5', 'Konnte Ausrichtungsinformationen nicht &#252berpr&#252fen');
    define('ERROR_VALIDATION_6', 'Sie haben nicht einen Code der G&#252ltigkeitserkl&#228rung (CAPTCHA) eingegeben.');

    ?>

  6. #16
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: German Language Pack for ZC 1.3.9

    You may want to replace the 'Umlauts' with the following:

    ä is coded as ä

    ö is coded as ö

    ü is coded as ü

    This would keep coding uniform.

  7. #17
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: German Language Pack for ZC 1.3.9

    Upgrading to 1.3.9g

    If you are upgrading to v 1.3.9g please take note of the following language file deletions/additions:


    Deleted Language File (since release of v1.3.9a/b/c/d/e/f):

    /admin/includes/languages/german/cache.php (deleted in 1.3.9g)


    New Language File (since release of v1.3.9a/b/c/d/e/f):

    Copy

    /admin/includes/languages/english/alert_page.php

    to

    /admin/includes/languages/german/alert_page.php and edit the content to read:

    Code:
    define('HEADING_TITLE', 'Warnung!');
    define('ALERT_PART1', 'Warnung: Kein Zugriff zur Administration');
    define('ALERT_RENAME_ADMIN', 'ohne Nahmensänderung dieser Datei.');
    define('ALERT_REMOVE_ZCINSTALL', 'solange die zc_install Datei nicht gelöscht ist.<br />(Bitte FTP Programm benutzen)');
    define('ADMIN_RENAME_FAQ_NOTE', 'Unterstützung zur Namensänderung dieser Datei hier');
    define('ALERT_PART2', 'Dann das neue URL in das Addressfeld des Browsers eingeben: (Beispiel) <u>http://www.your_site.com/YourAdminFolder/</u> ');

    These changes will be reflected in the next update version of this language pack.

  8. #18
    Join Date
    Oct 2010
    Location
    Idaho
    Posts
    292
    Plugin Contributions
    0

    Default Re: German Language Pack for ZC 1.3.9

    frank18,

    Are you the moderator on this thread? Anyone know how to get the Lightbox buttons (close, previous, next) to display when viewing a Zen Cart site in German when Lightbox is installed? Part of the answer may be here but I'm not sure where to run with the solution!
    includes/classes/zen_lightbox/slimbox.php

  9. #19
    Join Date
    Oct 2010
    Location
    Idaho
    Posts
    292
    Plugin Contributions
    0

    Default Re: German Language Pack for ZC 1.3.9

    folks, we might be up a creek on the three buttons (and also image counter display Image 1 of 2 displaying ZEN_LIGHTBOX_COUNTER etc.) for Lightbox with German Language Pack. The link for Close is there if you hover, but no button, and Prev and Next are gone entirely w/ no space where they were, though there may be a way to throw this code back in when using German language.

    one of my products using two images:

    http://www.vintage-adventures.com/in...&products_id=9

  10. #20
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: German Language Pack for ZC 1.3.9

    Quote Originally Posted by finlander View Post
    folks, we might be up a creek on the three buttons (and also image counter display Image 1 of 2 displaying ZEN_LIGHTBOX_COUNTER etc.) for Lightbox with German Language Pack. The link for Close is there if you hover, but no button, and Prev and Next are gone entirely w/ no space where they were, though there may be a way to throw this code back in when using German language.

    one of my products using two images:

    http://www.vintage-adventures.com/in...&products_id=9
    I would think it is a matter of finding the corresponding English language file(s) and copying the file(s) to their German locations - then editing the defines. Same goes for buttons if necessary.

    I will have a look at this mod shortly - may not be tonight but possibly tomorrow.

 

 
Page 2 of 11 FirstFirst 1234 ... LastLast

Similar Threads

  1. v151 German Language Pack for ZC version 1.5.x
    By frank18 in forum Addon Language Packs
    Replies: 57
    Last Post: 22 Apr 2025, 09:41 PM
  2. German Language Pack
    By sketchhgal in forum Addon Language Packs
    Replies: 1
    Last Post: 27 Mar 2009, 04:49 PM
  3. german language pack for 1.3.8?
    By SAND in forum Addon Language Packs
    Replies: 1
    Last Post: 10 Jun 2008, 07:38 PM
  4. German Language Pack 1.3.5
    By hugo13 in forum Addon Language Packs
    Replies: 7
    Last Post: 14 Nov 2006, 11:23 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