Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalkbrenner committed Feb 21, 2025
1 parent 70a238a commit 4e93071
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SolrConnector/SolrConnectorPluginBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public function buildConfigurationForm(array $form, FormStateInterface $form_sta
$form['workarounds']['solr_version'] = [
'#type' => 'select',
'#title' => $this->t('Solr version override'),
'#description' => $this->t('Specify the Solr version manually in case it cannot be retrived automatically. The version can be found in the Solr admin interface under "Solr Specification Version" or "solr-spec"'),
'#description' => $this->t('Specify the Solr version manually in case it cannot be retrieved automatically. The version can be found in the Solr admin interface under "Solr Specification Version" or "solr-spec"'),
'#options' => [
'' => $this->t('Determine automatically'),
'6' => '6.x',
Expand All @@ -257,7 +257,7 @@ public function buildConfigurationForm(array $form, FormStateInterface $form_sta
$form['workarounds']['skip_schema_check'] = [
'#type' => 'checkbox',
'#title' => $this->t('Skip schema verification'),
'#description' => $this->t('Skip the automatic check for schema-compatibillity. Use this override if you are seeing an error-message about an incompatible schema.xml configuration file, and you are sure the configuration is compatible.'),
'#description' => $this->t('Skip the automatic check for schema-compatibility. Use this override if you are seeing an error-message about an incompatible schema.xml configuration file, and you are sure the configuration is compatible.'),
'#default_value' => $this->configuration['skip_schema_check'] ?? FALSE,
];

Expand Down

0 comments on commit 4e93071

Please sign in to comment.