Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(wizards): Changed label of rptID #697

Merged
merged 3 commits into from
Apr 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/translations/de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,7 @@ export const de: Translations = {
},
report: {
wizard: { location: 'Ablageort der Reports wählen' },
rptID: 'Report-Kontrolblock Kennung',
},
cleanup: {
unreferencedDataSets: {
Expand Down
1 change: 1 addition & 0 deletions src/translations/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,7 @@ export const en = {
},
report: {
wizard: { location: 'Select Report Control Location' },
rptID: 'Report control block identifier',
},
cleanup: {
unreferencedDataSets: {
Expand Down
2 changes: 1 addition & 1 deletion src/wizards/reportcontrol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function contentReportControlWizard(options: ContentOptions): TemplateResult[] {
.maybeValue=${options.rptID}
nullable
required
helper="${translate('scl.id')}"
helper="${translate('report.rptID')}"
></wizard-textfield>`,
html`<wizard-checkbox
label="indexed"
Expand Down
6 changes: 3 additions & 3 deletions test/unit/wizards/__snapshots__/reportcontrol.test.snap.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ snapshots["Wizards for SCL ReportControl element define an edit wizard that for
>
</wizard-checkbox>
<wizard-textfield
helper="[scl.id]"
helper="[report.rptID]"
label="rptID"
nullable=""
required=""
Expand Down Expand Up @@ -239,7 +239,7 @@ snapshots["Wizards for SCL ReportControl element define an edit wizard that for
</wizard-checkbox>
<wizard-textfield
disabled=""
helper="[scl.id]"
helper="[report.rptID]"
label="rptID"
nullable=""
required=""
Expand Down Expand Up @@ -467,7 +467,7 @@ snapshots["Wizards for SCL ReportControl element define an create wizard that th
</wizard-checkbox>
<wizard-textfield
disabled=""
helper="[scl.id]"
helper="[report.rptID]"
label="rptID"
nullable=""
required=""
Expand Down