PDA

View Full Version : Different Language for Paged_Archive?


hokaff
05-28-2006, 08:06 AM
I installed Paged_Archive_addon 1.0 with PP1.5 and everything runs wonderfully (www.bildsam.de).
But I have my whole site in German.
Now: in Dropbox Monthly_Archive all months are shown in english.
Can anybody tell me, how to implement a German translation for that?

jdleung
05-28-2006, 09:47 AM
login to admin panel -> option
and just select your language.

hokaff
05-28-2006, 10:30 AM
login to admin panel -> option
and just select your language.

I have done that already and everything else is in German. But these months remain to appear in English. :confused:

jdleung
05-28-2006, 10:35 AM
sorry, the suggestion above doesn't work

I thought it's the same with my month calendar addon.

in page archive addon
date format in the older version:
$select_display_date=date("m,Y",strtotime($thedate."-01"));
so displays months like this (06,2006)(2)

date format in the current version:
$select_display_date=date("F, Y",strtotime($thedate."-01"));
so displays months like this (June,2006)(20)

replace the second code with the first one in page_archive.php if you may use the numerical months

or you have to hack the addon.

or have try on Month Calendar addon.;=D

hokaff
05-28-2006, 02:47 PM
That's a good idea! Thanks a lot.
Holger
:)