commit 2e6501f866fb94064654a84e17d4c1ceb0744a59
parent cde2563f6d36b5a74971c82eb0e060a3b1613d30
Author: Christian Grothoff <christian@grothoff.org>
Date: Sat, 11 Oct 2025 23:01:48 +0200
uniform capitalization
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/Form/TurnstileSettingsForm.php b/src/Form/TurnstileSettingsForm.php
@@ -101,7 +101,7 @@ class TurnstileSettingsForm extends ConfigFormBase {
$form['enabled_content_types'] = [
'#type' => 'checkboxes',
- '#title' => $this->t('Enabled Content Types'),
+ '#title' => $this->t('Enabled content types'),
'#description' => $this->t('Select which content types should have the price field and be subject to paywall transformation.'),
'#options' => $type_options,
'#default_value' => $config->get('enabled_content_types') ?: [],
@@ -109,7 +109,7 @@ class TurnstileSettingsForm extends ConfigFormBase {
$form['payment_backend_url'] = [
'#type' => 'url',
- '#title' => $this->t('Payment Backend URL'),
+ '#title' => $this->t('Payment backend URL'),
'#description' => $this->t('HTTP URL for the payment backend service.'),
'#default_value' => $config->get('payment_backend_url') ?: '',
'#maxlength' => 255,
@@ -117,7 +117,7 @@ class TurnstileSettingsForm extends ConfigFormBase {
$form['access_token'] = [
'#type' => 'textfield',
- '#title' => $this->t('Access Token'),
+ '#title' => $this->t('Access token'),
'#description' => $this->t('Access token for authenticating with the payment backend.'),
'#default_value' => $config->get('access_token') ?: '',
'#maxlength' => 255,