diff options
| author | 2020-09-29 14:20:40 +0200 | |
|---|---|---|
| committer | 2020-09-29 14:20:40 +0200 | |
| commit | f79194f4a6ddff6cfbccc9075621074b80a97573 (patch) | |
| tree | 4f2436e930d45fe15af26e5d146ec093672183d4 /app/i18n/pl/user.php | |
| parent | faca82962c1b6cc8902c9b4b62f8b9e52128861e (diff) | |
Add Polish localization (#3190)
Diffstat (limited to 'app/i18n/pl/user.php')
| -rw-r--r-- | app/i18n/pl/user.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app/i18n/pl/user.php b/app/i18n/pl/user.php new file mode 100644 index 000000000..dfd1b7b73 --- /dev/null +++ b/app/i18n/pl/user.php @@ -0,0 +1,44 @@ +<?php + +return array( + 'email' => array( + 'feedback' => array( + 'invalid' => 'Ten adres e-mailowy jest niepoprawny.', + 'required' => 'Wymagane jest podanie adresu e-mail.', + ), + 'validation' => array( + 'change_email' => 'You can change your email address <a href="%s">on the profile page</a>.', // TODO - Translation + 'email_sent_to' => 'We sent you an email at <strong>%s</strong>. Please follow its instructions to validate your address.', // TODO - Translation + 'feedback' => array( + 'email_failed' => 'We couldn’t send you an email because of a server configuration error.', // TODO - Translation + 'email_sent' => 'An email has been sent to your address.', // TODO - Translation + 'error' => 'Email address validation failed.', // TODO - Translation + 'ok' => 'This email address has been validated.', // TODO - Translation + 'unneccessary' => 'This email address was already validated.', // TODO - Translation + 'wrong_token' => 'This email address failed to be validated due to a wrong token.', // TODO - Translation + ), + 'need_to' => 'You need to validate your email address before being able to use %s.', // TODO - Translation + 'resend_email' => 'Resend the email', // TODO - Translation + 'title' => 'Email address validation', // TODO - Translation + ), + ), + '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 - Translation + 'title' => 'You need to validate your account', // TODO - Translation + 'welcome' => 'Welcome %s,', // TODO - Translation + ), + ), + 'password' => array( + 'invalid' => 'The password is invalid.', // TODO - Translation + ), + 'tos' => array( + 'feedback' => array( + 'invalid' => 'You must accept the Terms of Service to be able to register.', // TODO - Translation + ), + ), + 'username' => array( + 'invalid' => 'This username is invalid.', // TODO - Translation + 'taken' => 'This username, %s, is taken.', // TODO - Translation + ), +); |
