Re: German Language Pack for ZC 1.3.9
Hi All,
I'm using zen 1.3.9h and the 1.4 version of the german language pack.
After installation i get the message:
The website encountered an error while retrieving http://dev.addcomputers.com/index.ph...ex&language=de. It may be down for maintenance or configured incorrectly.
I have installed french, spanish and other language packs with no issues.
Has anyone had a similar experience / any advice.
Many thanks.
Re: German Language Pack for ZC 1.3.9
I clicked on the link you provided in your post and I am not getting your error.
You may want to clear your cache or use an alternative browser to access the site.
I don't think this has anything to do with the GE language pack :no:
Re: German Language Pack for ZC 1.3.9
Hi Frank,
I had just solved the problem :-)
I had a german.php in includes/languages/MY_TEMPLATE/ which caused the issue.
Thank you for your reply.
Re: German Language Pack for ZC 1.3.9
Good to hear that all is well :smile:
Re: German Language Pack for ZC 1.3.9
Hi I trying to us your German language pack 1.4
I have freshly installed a 1.39h with your language pack (1.4) but I am getting this of the error log PHP Parse error: syntax error, unexpected T_STRING in ............../kunst-stoff.info/shop/includes/languages/german.php on line 23
I have uninstalled and re installed twice now but the problems is reappearing. It all works fine in when English
I cannot for the life of me see what the problem is ?????????
cheers
A
Re: German Language Pack for ZC 1.3.9
Quote:
Originally Posted by
alekt
Hi I trying to us your German language pack 1.4
I have freshly installed a 1.39h with your language pack (1.4) but I am getting this of the error log PHP Parse error: syntax error, unexpected T_STRING in ............../kunst-stoff.info/shop/includes/languages/german.php on line 23
I have uninstalled and re installed twice now but the problems is reappearing. It all works fine in when English
I cannot for the life of me see what the problem is ?????????
cheers
A
Have you altered those lines?
could you post lines 20-25
Re: German Language Pack for ZC 1.3.9
Quote:
Originally Posted by
nigelt74
Have you altered those lines?
could you post lines 20-25
Also please let us know which sub-version of the pack is installed.
There are 2 options, iso-8859-1 and utf-8. You should not install both.
Re: German Language Pack for ZC 1.3.9
Hi
Just installed this pack but when I use iso-8859-1 I get a completely blank screen
Re: German Language Pack for ZC 1.3.9
Quote:
Originally Posted by
nigelt74
Have you altered those lines?
could you post lines 20-25
define('FOOTER_TEXT_BODY', 'Copyright © ' . date('Y') . ' <a href="http://www.kunst-stoff.com" target="_blank">kunst-stoff</a>. Powered by <a href="http://www.zen-cart.com" target="_blank">zen-cart</a>');
// look in your $PATH_LOCALE/locale directory for available locales..
// on RedHat try 'en_US'
// on FreeBSD try 'en_US.ISO_8859-1'
// on Windows try 'en', or 'English'
@setlocale(LC_TIME, 'de_DE.ISO_8859-1'); geändert von MaleBorg
//@setlocale(LC_TIME, 'de_DE.UTF-8', 'de_AT.UTF-8', 'de_CH.UTF-8', 'de_DE.ISO_8859-1','de_DE@euro', 'de_DE', 'de', 'ge', 'deu.deu');
define('DATE_FORMAT_SHORT', '%d.%m %Y'); // this is used for strftime()
define('DATE_FORMAT_LONG', '%A, %d. %B %Y'); // this is used for strftime()
define('DATE_FORMAT', 'd.m.Y'); // this is used for date()
define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');
////
// Return date in raw format
// $date should be in format mm/dd/yyyy
// raw date is in format YYYYMMDD, or DDMMYYYY
if (!function_exists('zen_date_raw')) {
function zen_date_raw($date, $reverse = false){
if ($reverse){
return substr($date, 3, 2) . substr($date, 0, 2) . substr($date, 6, 4);
}else{
// edit by cyaneo for german Date support - thx to hugo13
// return substr($date, 6, 4) . substr($date, 0, 2) . substr($date, 3, 2);
return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2);
}
}
}
there you go
A
Re: German Language Pack for ZC 1.3.9
Quote:
Originally Posted by
frank18
Also please let us know which sub-version of the pack is installed.
There are 2 options, iso-8859-1 and utf-8. You should not install both.
iso-8859-1 ------------is what I installed
A
139h