mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-14 23:41:09 -05:00
https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki/Version-4.0-User-Upgrade-Guide A couple of rules have changed name. Exclusion paths have slightly changed behaviour. Main change is that it was unhappy with our i18n header comments, so minor edit there, since that rule kind of makes sense the rest of the time
55 lines
2.5 KiB
PHP
55 lines
2.5 KiB
PHP
<?php
|
||
|
||
/******************************************************************************
|
||
* Each entry of that file can be associated with a comment to indicate its *
|
||
* state. When there is no comment, it means the entry is fully translated. *
|
||
* The recognized comments are (comment matching is case-insensitive): *
|
||
* + TODO: the entry has never been translated. *
|
||
* + DIRTY: the entry has been translated but needs to be updated. *
|
||
* + IGNORE: the entry does not need to be translated. *
|
||
* When a comment is not recognized, it is discarded. *
|
||
******************************************************************************/
|
||
|
||
return array(
|
||
'email' => array(
|
||
'feedback' => array(
|
||
'invalid' => 'This email address is invalid.', // TODO
|
||
'required' => 'An email address is required.', // TODO
|
||
),
|
||
'validation' => array(
|
||
'change_email' => 'You can change your email address <a href="%s">on the profile page</a>.', // TODO
|
||
'email_sent_to' => 'We sent you an email at <strong>%s</strong>. Please follow its instructions to validate your address.', // TODO
|
||
'feedback' => array(
|
||
'email_failed' => 'We couldn’t send you an email because of a server configuration error.', // TODO
|
||
'email_sent' => 'An email has been sent to your address.', // TODO
|
||
'error' => 'Email address validation failed.', // TODO
|
||
'ok' => 'This email address has been validated.', // TODO
|
||
'unnecessary' => 'This email address was already validated.', // TODO
|
||
'wrong_token' => 'This email address failed to be validated due to a wrong token.', // TODO
|
||
),
|
||
'need_to' => 'You need to validate your email address before being able to use %s.', // TODO
|
||
'resend_email' => 'Resend the email', // TODO
|
||
'title' => 'Email address validation', // TODO
|
||
),
|
||
),
|
||
'mailer' => array(
|
||
'email_need_validation' => array(
|
||
'body' => 'You’ve just registered on %s, but you still need to validate your email address. For that, just follow the link:', // TODO
|
||
'title' => 'You need to validate your account', // TODO
|
||
'welcome' => 'Welcome %s,', // TODO
|
||
),
|
||
),
|
||
'password' => array(
|
||
'invalid' => 'The password is invalid.', // TODO
|
||
),
|
||
'tos' => array(
|
||
'feedback' => array(
|
||
'invalid' => 'You must accept the Terms of Service to be able to register.', // TODO
|
||
),
|
||
),
|
||
'username' => array(
|
||
'invalid' => 'This username is invalid.', // TODO
|
||
'taken' => 'This username, %s, is taken.', // TODO
|
||
),
|
||
);
|