diff options
author | rub <rub@piwigo.org> | 2007-03-15 23:20:41 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-03-15 23:20:41 +0000 |
commit | 6d2ea02a9591a219f5964ecc98ffa3f7796039fa (patch) | |
tree | 81caf2c1745f31910d61ae2dcce316f657ca7f6c /upload.php | |
parent | d98c48bc6e0e5ab7de21e5252889270ecdea6c89 (diff) |
Add new translation functions.inc.php
Translate subject of information mail.
Notification mails are sent on the default language.
No mail is sent to the author witch are not done actions
git-svn-id: http://piwigo.org/svn/trunk@1908 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | upload.php | 35 |
1 files changed, 16 insertions, 19 deletions
diff --git a/upload.php b/upload.php index 36aba5b7d..48d36d793 100644 --- a/upload.php +++ b/upload.php @@ -229,27 +229,24 @@ if ( isset( $_POST['submit'] ) and !isset( $_GET['waiting_id'] ) ) $waiting_url = get_absolute_root_url().'admin.php?page=waiting'; - $content = - 'Category: '.get_cat_display_name($category['upper_names'], null, false)."\n" - .'Picture name: '.$_FILES['picture']['name']."\n" - .'User: '.$_POST['username']."\n" - .'Email: '.$_POST['mail_address']."\n" - .'Picture name: '.$_POST['name']."\n" - .'Author: '.$_POST['author']."\n" - .'Creation Date: '.$_POST['date_creation']."\n" - .'Comment: '.$_POST['comment']."\n" - .get_block_mail_admin_info() - .'Waiting page: '.$waiting_url."\n"; + $keyargs_content = array + ( + get_l10n_args('Category: %s', get_cat_display_name($category['upper_names'], null, false)), + get_l10n_args('Picture name: %s', $_FILES['picture']['name']), + get_l10n_args('User: %s', $_POST['username']), + get_l10n_args('Email: %s', $_POST['mail_address']), + get_l10n_args('Picture name: %s', $_POST['name']), + get_l10n_args('Author: %s', $_POST['author']), + get_l10n_args('Creation date: %s', $_POST['date_creation']), + get_l10n_args('Comment: %s', $_POST['comment']), + get_l10n_args('', ''), + get_l10n_args('Waiting page: %s', $waiting_url) + ); - pwg_mail + pwg_mail_notification_admins ( - format_email('administrators', get_webmaster_mail_address()), - array - ( - 'subject' => 'PWG picture uploaded by '.$_POST['username'], - 'content' => $content, - 'Bcc' => get_administrators_email() - ) + get_l10n_args('Picture uploaded by %s', $_POST['username']), + $keyargs_content ); } } |