Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
refine description
Browse files Browse the repository at this point in the history
  • Loading branch information
dbosen committed Aug 17, 2016
1 parent c3acbf9 commit 5d78e02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Form/SettingsForm.php
Expand Up @@ -83,16 +83,16 @@ public function buildForm(array $form, FormStateInterface $form_state) {
$api_key = !empty($values['nexx_api_authkey']) ? $values['nexx_api_authkey'] : $settings->get('nexx_api_authkey');
$form['nexx_api_authkey'] = [
'#type' => 'textfield',
'#title' => $this->t('Thunder Installation Code'),
'#description' => $this->t('The thunder installation code you git, when you registered for nexx. In nexx omnia this is also called "API Key (THOR)"'),
'#title' => $this->t('Installation Code'),
'#description' => $this->t('The installation code you get, when you registered for nexx. In nexx omnia this is also called "API Key (THOR)"'),
'#default_value' => $api_key,
];

$omnia_id = !empty($values['omnia_id']) ? $values['omnia_id'] : $settings->get('omnia_id');
$form['omnia_id'] = [
'#type' => 'textfield',
'#title' => $this->t('Domain ID'),
'#description' => $this->t('The unique identifier of the site, given by nexx.tv.'),
'#description' => $this->t('The unique identifier of the site, given by nexx.'),
'#default_value' => $omnia_id,
];

Expand Down

0 comments on commit 5d78e02

Please sign in to comment.