Hi all,
Today I would want to translate my admin area into other language and I have downloaded the last language pack.
But I don't have the last version of PW and thereby I don't have all files of the pack.
What is the result: a lot of warnings because the parser try to parse non-existent files.
A simple solution could be made in the file "LanguageParser.php" to the function:
/**
* Begin parsing
*
*/
protected function execute($file) {
if (!file_exists( $file )) return; <== this line avoid parsing non-existent files.
Regards,
Thanks
Raul