diff options
author | plegall <plg@piwigo.org> | 2010-03-23 23:45:13 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-03-23 23:45:13 +0000 |
commit | 8802877a844a9604072dd2ebbfddc668d53a12d2 (patch) | |
tree | 6d0b5c8b49d0777d1e67527330f2f7439d76ef29 /admin | |
parent | 4a6748bd70ae669d5617b128a71152a4fce16b74 (diff) |
remove the \n from the language key and split into 2 separate strings to avoid
useless exceptions in translation analysis scripts.
git-svn-id: http://piwigo.org/svn/trunk@5302 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/notification_by_mail.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/notification_by_mail.php b/admin/notification_by_mail.php index f294894fd..1501db636 100644 --- a/admin/notification_by_mail.php +++ b/admin/notification_by_mail.php @@ -200,7 +200,7 @@ order by $query = 'delete from '.USER_MAIL_NOTIFICATION_TABLE.' where check_key in ('.implode(",", $quoted_check_key_list).');'; $result = pwg_query($query); - redirect($base_url.get_query_string_diff(array(), false), l10n("Processing treatment.\nPlease wait...")); + redirect($base_url.get_query_string_diff(array(), false), l10n('Processing treatment.')."\n".l10n('Please wait...')); } } } @@ -734,4 +734,4 @@ switch ($page['mode']) // +-----------------------------------------------------------------------+ $template->assign_var_from_handle('ADMIN_CONTENT', 'notification_by_mail'); -?>
\ No newline at end of file +?> |