Skip to content

Commit

Permalink
chore: labels are back
Browse files Browse the repository at this point in the history
  • Loading branch information
illfixit committed Sep 26, 2024
1 parent b447ff5 commit a739cf3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@
class="flex flex-row space-x-[10px] -mt-3">
<!-- Query Param Name -->
<mat-form-field class="w-1/3">
<mat-label>{{ 'general.name' | translate }}</mat-label>
<input
matInput
placeholder="q"
Expand All @@ -198,6 +199,7 @@
</mat-form-field>
<!-- Query Param Value -->
<mat-form-field class="grow">
<mat-label>{{ 'general.value' | translate }}</mat-label>
<input
matInput
placeholder="..."
Expand Down Expand Up @@ -331,6 +333,9 @@
class="flex flex-row space-x-[10px] -mt-3">
<!-- Auth Header Name -->
<mat-form-field class="w-1/3">
<mat-label>{{
'create_data_offer_page.auth_header_name' | translate
}}</mat-label>
<input
matInput
placeholder="{{
Expand All @@ -346,6 +351,9 @@
form.datasource.controls.httpAuthHeaderType.value === 'Value'
"
class="grow">
<mat-label>{{
'create_data_offer_page.auth_header_value' | translate
}}</mat-label>
<input
matInput
placeholder="{{
Expand Down Expand Up @@ -405,14 +413,22 @@
class="flex flex-row space-x-[10px] -mt-3">
<!-- Header Name -->
<mat-form-field class="w-1/3">
<mat-label>{{
'create_data_offer_page.header_name' | translate
}}</mat-label>
<input
matInput
placeholder="{{ 'general.accept' | translate }}"
placeholder="{{
'create_data_offer_page.header' | translate
}}"
autocomplete="new-header-name"
[formControl]="header.controls.headerName" />
</mat-form-field>
<!-- Header Value -->
<mat-form-field class="grow">
<mat-label>{{
'create_data_offer_page.header_value' | translate
}}</mat-label>
<input
matInput
placeholder="..."
Expand Down
5 changes: 5 additions & 0 deletions src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"loading1": "Loading",
"method_para": "Method Parameterization",
"method": "Method",
"name": "Name",
"nuts": "NUTS Locations",
"operator": "Operator",
"oth_connector": "Other Connector",
Expand Down Expand Up @@ -271,6 +272,7 @@
"asset_id_tooltip": "Asset ID, used internally, is an auto-generated string in a URL-compatible format, combining the asset name and version with a urn:artifact: prefix. You can customize it if needed.",
"asset_id": "Asset ID",
"auth_header_name": "Auth Header Name",
"auth_header_value": "Auth Header Value",
"authorization_header_placeholder": "Authorization",
"bearer_placeholder": "Bearer ...",
"conditions_for_use_description_hint": "Additional not legally relevant usage instructions (e.g. how to cite the dataset). The field supports",
Expand Down Expand Up @@ -315,6 +317,9 @@
"geo_reference_method": "Geo reference method",
"geo_reference_placeholder": "Lat/Lon",
"geo_reference_tooltip": "The method used for representing of geographical data, e.g GeoJSON, OpenLR, etc.",
"header": "Header",
"header_name": "Header Name",
"header_value": "Header Value",
"header_with_value": "Header with Value",
"header_with_vault_secret": "Header with Vault Secret",
"keywords": "Keywords",
Expand Down

0 comments on commit a739cf3

Please sign in to comment.