mirror of
https://github.com/discourse/discourse.git
synced 2026-08-08 17:53:55 +08:00
#### Description:
This PR renames the `discourse-hcaptcha` plugin to `discourse-captcha`
to better reflect its support for multiple captcha providers (hCaptcha
and reCAPTCHA)
#### Changes
- Renamed plugin directory from plugins/discourse-hcaptcha to
plugins/discourse-captcha
- Updated Ruby module namespace from DiscourseHcaptcha to
DiscourseCaptcha
- Updated references in:
- .gitignore
- pnpm-workspace.yaml
- tsconfig.json
- config/official_plugins.json
- translator.yml
- migrations/core/config/intermediate_db.yml
- `hosted-site` plugin
- Migration file preserved to handle existing discourse_hcaptcha_enabled
setting migration
---------
Co-authored-by: Gabriel Grubba <gabriel@discourse.org>
21 lines
1.3 KiB
YAML
Vendored
21 lines
1.3 KiB
YAML
Vendored
en:
|
|
dashboard:
|
|
problem:
|
|
hcaptcha_configuration: "There is a problem with your hCaptcha `site_key` or `secret_key` configuration"
|
|
recaptcha_configuration: "There is a problem with your ReCaptcha `site_key` or `secret_key` configuration"
|
|
|
|
admin:
|
|
site_settings:
|
|
categories:
|
|
discourse_captcha: "Captcha Plugin"
|
|
|
|
site_settings:
|
|
discourse_captcha_enabled: "Enable captcha verification for new user registrations. Requires configuring either hCaptcha or reCaptcha below."
|
|
discourse_captcha_provider: "Choose a Captcha provider. This requires you to own an account of the chosen provider"
|
|
hcaptcha_site_key: "hCaptcha Site Key from your <a target='blank' href='https://hcaptcha.com'>hcaptcha.com</a> account"
|
|
hcaptcha_secret_key: "hCaptcha Secret Key from your <a target='blank' href='https://hcaptcha.com'>hcaptcha.com</a> account"
|
|
recaptcha_site_key: "ReCaptcha Site Key from your <a target='blank' href='https://www.google.com/recaptcha'>ReCaptcha</a> account"
|
|
recaptcha_secret_key: "ReCaptcha Secret Key from your <a target='blank' href='https://www.google.com/recaptcha'>ReCaptcha</a> account"
|
|
|
|
captcha_verification_failed: "Captcha verification failed"
|
|
captcha_not_configured: "Captcha is enabled but not properly configured. Please contact the site administrator."
|