Hello,
On 2013-03-21 14:40, Frank Ellebrecht wrote:
I just found some strings that are not yet ready for i18n:
First, on the status monitor page the time behind
$_['text_partition_full'] isn't in messages.php (x _years_, y
_months_,
z _days_).
well, I can find it in languages/en/messages.php around 371th line.
I'll reorder the lines to put it to its right place.
Second, on the »Create user« page are fields for
* email address,
* user name and
* real name.
But I can't login with the user name but only with the email address.
What is the user name for?
To identify the given user. Piler doesn't really use it currently.
Third, on admin's »Archive Accounting« page both »No Emails Found« and
»No Domains Found« can't be translated.
I've just added them to the messages.php files:
$_['text_no_domain_found'] = 'No domain found';
$_['text_no_email_found'] = 'No email found';
and adjusted the accounting.tpl file.
Btw, could you please elaborate a bit on what »Archive Accounting« is
meant to be and how to set it up? I have emails and domains added on
the
settings page, but I only get »No Emails/Domains Found«. (Which also
means that there might be more untranslated strings ;-) ) From the
Hungarian text I think it has something to do with statistics, right?
it gives you an idea who uses how many disk space for his archived
emails.
It relies on a daily cron job to be run as user piler:
1 3 * * * /usr/bin/php /usr/local/libexec/piler/generate_stats.php
--webui /srv/www/piler.yourdomain.com > /dev/null
This will be added to the final docs when everything is ready for the
new
version (0.1.23). I expect it within a few weeks. Until then you may
run
this cron job to populate the accounting table - if you need this
feature.
Janos