Downloads\includes\functions.php

Begonnen von gabin, 08 Februar 2007, 09:33:39

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

gabin

Hallo an das pragmaMX-Team und alle anwesenden,


auf Zeile 1038 von  Downloads\includes\functions.php steht immer noch:
Zitat
$options[] = '<option value="0">No Categories available</option>';


Frage:
Warum macht man nicht aus dem "No Categories available" eine Sprachkonstante?

Das wäre gut für die Übersetzung in anderen Sprachen.

Gruß

gabin
Die beste Voraussetzung ist dieses learning by doing. Wenn man auf der Kabarettbühne mit drei Zuschauern im Saal anfängt und dann irgendwann ganze Hallen füllt.

diabolo

#1
Hi,
You can add it:

$options[] = '<option value="0">' . _NOCATAVAILABLE . '</option>';

and add in modules/Downloads/language/YOUR LANGUAGE

ADD:

define("_NOCATAVAILABLE", "No Categories available");

I will make the changes for cvs  :thumbup:

gabin

Super!

Nun ich schlage vor, diese Sprachkonstante für die nächsten Versionen zu übernehmen.

Danke Diabolo

gabin

Die beste Voraussetzung ist dieses learning by doing. Wenn man auf der Kabarettbühne mit drei Zuschauern im Saal anfängt und dann irgendwann ganze Hallen füllt.

diabolo

Done and also for Web_links module  ;)

If you see another "Sprachkonstante" forgotten , post it, i' ll make the changes  ;)