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
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:
Super!
Nun ich schlage vor, diese Sprachkonstante für die nächsten Versionen zu übernehmen.
Danke Diabolo
gabin
Done and also for Web_links module ;)
If you see another "Sprachkonstante" forgotten , post it, i' ll make the changes ;)