Skip to content

Commit

Permalink
webapp setup: Add missing Description field to lnb and rotor.
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettpeter committed Sep 17, 2022
1 parent 9165f56 commit 9c3a022
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mythtv/html/assets/i18n/en_US.json
Expand Up @@ -443,7 +443,9 @@
"longitude_desc": "The Cartesian longitude for your location. Use negative numbers for western coordinates."
},
"subtype_diseqc_1_2": "DiSEqC 1.2",
"subtype_diseqc_1_3": "DiSEqC 1.3 (GotoX/USALS)"
"subtype_diseqc_1_3": "DiSEqC 1.3 (GotoX/USALS)",
"description_label": "Description",
"description_desc": "Optional descriptive name for this device, to make it easier to configure settings later."
},
"delete_details": "This will delete {{CardType}} Device:{{VideoDevice}} Name:{{DisplayName}}",
"external": {
Expand Down
Expand Up @@ -8,6 +8,16 @@
<ng-template pTemplate="content">
<div class="grid">
<div class="mb-4 w-full">

<div class="form-group field">
<label for="Description" class="block">{{ 'settings.capture.diseqc.description_label' | translate }}</label>
<input pInputText id="ip" [(ngModel)]="diseqcTree.Description" name="Description" #Description="ngModel"
class="mb-2 form-control w-full" />
<small class="block">
{{ 'settings.capture.diseqc.description_desc' | translate }}
</small>
</div>

<div class="form-group field">
<label for="LnbPreset" class="block">{{ 'settings.capture.diseqc.lnb.preset_label' | translate }}</label>
<p-dropdown [options]="lnbPresetList" [(ngModel)]="currentPreset" [editable]="false" optionLabel="Name"
Expand Down
Expand Up @@ -9,6 +9,15 @@
<div class="grid">
<div class="mb-4 w-full">

<div class="form-group field">
<label for="Description" class="block">{{ 'settings.capture.diseqc.description_label' | translate }}</label>
<input pInputText id="ip" [(ngModel)]="diseqcTree.Description" name="Description" #Description="ngModel"
class="mb-2 form-control w-full" />
<small class="block">
{{ 'settings.capture.diseqc.description_desc' | translate }}
</small>
</div>

<div class="form-group field">
<label for="CmdRepeat" class="block">{{ 'settings.capture.diseqc.rotor.cmdrepeat_label' |
translate
Expand Down

0 comments on commit 9c3a022

Please sign in to comment.