I'm working with both Code Igniter and Ion Auth for the first time. I'd like to change the language in the Ion Auth email templates (password reset, email verification, etc).

This is what appears to be the password reset email template (forgot_password.tpl.php), but I'm not sure where things like 'email_forgot_password_subheading' and 'email_forgot_password_heading' are defined. A Windows search of my local installation doesn't bring up any results. Can you help?

<html>
<body>
<h1><?php echo sprintf(lang('email_forgot_password_heading'), $identity);?></h1>
<p><?php echo sprintf(lang('email_forgot_password_subheading'),
anchor('auth/reset_password/'. $forgotten_password_code,    
lang('email_forgot_password_link')));?></p>
</body>
</html>
有帮助吗?

解决方案

Those will be in the language file in application/language/english/ion_auth_lang.php

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top