Skip to content

Commit

Permalink
refactor: dashboard page
Browse files Browse the repository at this point in the history
  • Loading branch information
illfixit committed Sep 25, 2024
1 parent 627cd5f commit 54d087e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<button
mat-icon-button
matSuffix
[matTooltip]="'tooltip.clipboard' | translate"
[matTooltip]="'general.copy_to_clipboard_tooltip' | translate"
[cdkCopyToClipboard]="data.connectorEndpoint">
<mat-icon>content_copy</mat-icon>
</button>
Expand All @@ -114,7 +114,7 @@
<button
mat-icon-button
matSuffix
[matTooltip]="'tooltip.clipboard' | translate"
[matTooltip]="'general.copy_to_clipboard_tooltip' | translate"
[cdkCopyToClipboard]="config.shownManagementApiUrl">
<mat-icon>content_copy</mat-icon>
</button>
Expand Down
30 changes: 26 additions & 4 deletions src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,12 @@
"contact": "Contact",
"ad_inf": "Advanced Information",
"geo_reference_method_tooltip": "The method used for representing of geographical data, e.g GeoJSON, OpenLR, etc.",
"parametrization": "Parameterization"
"parametrization": "Parameterization",
"combine": "Combine",
"start_date": "Start date",
"end_date": "End date",
"date": "Date",
"copy_to_clipboard_tooltip": "Copy to clipboard"
},
"tooltip": {
"negotiate": "Cannot negotiate contracts with your own connector.",
Expand Down Expand Up @@ -245,7 +250,10 @@
"new_def": "Publish New Data Offer",
"search_def": "Search data offer",
"create_def": "Publish Data Offer",
"con_def": "No data offer found with given filter."
"con_def": "No data offer found with given filter.",
"active_contracts": "Active Contracts",
"terminated_contracts": "Terminated Contracts",
"all_contracts": "All Contracts"
},
"contract_definition_page": {
"title": "Data Offers",
Expand Down Expand Up @@ -372,7 +380,8 @@
"your_pol": "Your Policies",
"pre_cat": "Preconfigured Catalogs",
"con_agree": "Contract Agreements",
"provided": "Provided by"
"provided": "Provided by",
"catalog_browser": "Catalog Browser"
},
"policy_definition_page": {
"title": "Policies",
Expand All @@ -384,7 +393,8 @@
"search_pol": "Search policies",
"create_policy": "Create Policy",
"no_pol": "No policy found with given filter.",
"expression": "Policy Expression"
"expression": "Policy Expression",
"metadata": "Policy Metadata"
},
"create_policy_page": {
"title": "Create Policy"
Expand Down Expand Up @@ -429,5 +439,17 @@
"email_tooltip": "This email address will be offered to potential consumers for contacting you. This is done in place of having an actual data source connected.",
"prefered_email_subject": "Preferred E-Mail Subject",
"prefered_email_subject_tooltip": "When potential customers reach out to you via email, you’ll receive messages with this subject line."
},
"policy_expression": {
"timespan_restriction_title": "Timespan Restriction",
"timespan_restriction_tooltip": "Timespan at which the policy is evaluated. This can be used to restrict the data offer to certain time periods",
"participant_id_title": "Consumer's Participant ID",
"participant_id_description": "Consumer's Participant ID, also called Connector ID, of the counter-party connector.",
"participant_id_hint": "Multiple values can be joined by comma",
"time_restriction_title": "Time Restriction",
"time_restriction_description": "Time at which the policy is evaluated. This can be used to restrict the data offer to certain time periods",
"add_tooltip": "Conjunction of several expressions. Evaluates to true if and only if all child expressions are true",
"or_tooltip": "Disjunction of several expressions. Evaluates to true if and only if at least one child expression is true",
"xone_tooltip": "XONE operation. Evaluates to true if and only if exactly one child expression is true"
}
}

0 comments on commit 54d087e

Please sign in to comment.