Hey Jan, me again -- I know that 2.6 is Alpha code, but you might wanna take a look at the Joom!Fish compatability ...
I made a NEW user, and this happens on the first viewing of the User Control Panel (UCP).
In the UCP, i have (English):
Code: Select all
User: Iulian Xey
Username: iulixey02
Main Category: Not created (Not created)
Number of categories: 0 (Max: 999, LEFT: 999)
Number of images: 0
Used space: 0 B (Max: 976.56 MB, LEFT: 976.56 MB)
But (Romanian):
Code: Select all
Utilizator: Iulian Xey
Numele utilizatorului: iulixey02
Categoria Principală: Nu a fost creat (Nu a fost creat)
Numărul categoriilor: 0 (Max: 5, Rămase: 5)
Numărul imaginilor: 0
Spațiu folosit: 0 B (Max: 20.00 MB, Rămase: 20.00 MB)
Why would the VALUES be different? When I set the parameters, the English is updated... but not the language. I don't have an area to update the parameters in the language (romanian). Where would this be? I can't find the table in the database even where that might be stored.
UPDATE:

After four hours of looking, I just can't find why the J!F language parameters are different than the base English parameters. So, I just did a very quick and very dirty hack of the user view.html.php :
Code: Select all
//$tmpl['uploadmaxsize'] = $params->get( 'upload_maxsize', 3145728 );
$tmpl['uploadmaxsize'] = 3145888;
$tmpl['uploadmaxsizeread'] = PhocaGalleryFile::getFileSizeReadable((int)$tmpl['uploadmaxsize']);
$tmpl['uploadmaxreswidth'] = $params->get( 'upload_maxres_width', 3072 );
$tmpl['uploadmaxresheight'] = $params->get( 'upload_maxres_height', 2304 );
//$tmpl['usersubcatcount'] = $params->get( 'user_subcat_count', 20 );
$tmpl['usersubcatcount'] = 100;
//$tmpl['userimagesmaxspace'] = $params->get( 'user_images_max_size', 81921520 );
$tmpl['userimagesmaxspace'] = 1048576888;
That makes it work, but it's not very elegant!

I don't see why the $params->get are not working with the Joomfish language, I'm just not experienced enough to understand how the parameters are filtered.
Thanks!
David