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

Fix sentence case #1417

Merged
merged 2 commits into from
Apr 4, 2023
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
4 changes: 2 additions & 2 deletions stix_shifter_modules/alertflex/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
Expand All @@ -18,7 +18,7 @@
"description": "The Server Name Indicator (SNI) enables a separate hostname to be provided for SSL authentication"
},
"selfSignedCert": {
"label": "Alertflex Connection Certificate",
"label": "Alertflex connection certificate",
"description": "Use self-signed SSL certificate and CA content(root and intermediate) of data source"
}
},
Expand Down
4 changes: 2 additions & 2 deletions stix_shifter_modules/arcsight/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
"label": "Need additional help?",
"description": "More details on the datasource setting can be found in the specified link"
},
"selfSignedCert": {
"label": "Connection Certificate",
"label": "Connection certificate",
"description": "Use self-signed SSL certificate and CA content (root and intermediate) of datasource"
},
"sni": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
"label": "Need additional help?",
"description": "More details on the data source setting can be found in the specified link"
},
"selfSignedCert": {
"label": "<Module> Connection Certificate",
"label": "<Module> connection certificate",
"description": "Use self-signed SSL certificate and CA content(root and intermediate) of data source"
},
"sni": {
Expand Down
10 changes: 5 additions & 5 deletions stix_shifter_modules/aws_athena/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"description": "Specify the region of the Amazon Athena data source"
},
"s3_bucket_location": {
"label": "Amazon S3 Bucket Location",
"label": "Amazon S3 bucket location",
"placeholder": "s3://bucket_name/",
"description": "Specify the location of the S3 bucket where query results will be stored"
},
Expand Down Expand Up @@ -48,19 +48,19 @@
"configuration": {
"auth": {
"aws_access_key_id": {
"label": "AWS Access Key ID",
"label": "AWS access key ID",
"description": "AWS Access Key ID is required for both AWS key-based and role-based authentication"
},
"aws_iam_role": {
"label": "AWS IAM Role",
"label": "AWS IAM role",
"description": "AWS IAM Role is required for only AWS role-based authentication"
},
"aws_assume_role_external_id": {
"label": "External ID for AWS Assume Role",
"label": "External ID for AWS assume role",
"description": "External ID is optional for using in AWS role-based authentication"
},
"aws_secret_access_key": {
"label": "AWS Secret Access Key",
"label": "AWS secret access key",
"description": "AWS Secret Access Key ID is required for both AWS key-based and role-based authentication"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@
"description": "Specify the region of the CloudWatch Logs for the data source"
},
"log_group_names": {
"label": "Log Group Names",
"label": "Log group names",
"description": "Specify the Log group name of the CloudWatch Logs from which you would like to get the logs from in a JSON format. For example: {\"vpcflow\": \"<log group name>\"}. To get logs from multiple service type logs: {\"vpcflow\": \"<log group name>\", \"guardduty\": \"<log group name>\"}",
"placeholder": "{\"vpcflow\": \"YOUR_LOG_GROUP_NAME1\"}"
}
},
"configuration": {
"auth": {
"aws_access_key_id": {
"label": "AWS Access Key ID",
"label": "AWS access key ID",
"description": "AWS Access Key ID is required for both AWS key-based and role-based authentication"
},
"aws_iam_role": {
"label": "AWS IAM Role",
"label": "AWS IAM role",
"description": "AWS IAM Role is required for only AWS role-based authentication"
},
"aws_secret_access_key": {
"label": "AWS Secret Access Key",
"label": "AWS secret access key",
"description": "AWS Secret Access Key ID is required for both AWS key-based and role-based authentication"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the Host name or IP"
},
"help": {
"label": "Need additional help?",
"description": "More details on the data source setting can be found in the specified link"
},
"selfSignedCert": {
"label": "Microsoft Azure Sentinel Certificate",
"label": "Microsoft Azure Sentinel certificate",
"description": "Use SSL certificate for Microsoft Azure Sentinel."
},
"sni": {
"label": "Server Name Indicator",
"description": "The Server Name Indicator (SNI) enables a separate hostname to be provided for SSL authentication."
},
"workpaceId": {
"label": "Log Analytics Workspace ID",
"label": "Log Analytics workspace ID",
"description": "ID of the Azure Log Analytics workspace"
}
},
Expand All @@ -32,11 +32,11 @@
"description": "Tenant ID of Azure Active directory Application with access to the Log Analytics Workspace"
},
"clientId": {
"label": "Client Id",
"label": "Client ID",
"description": "Client ID of Azure Active directory Application with access to the Log Analytics Workspace"
},
"clientSecret": {
"label": "Client Secret",
"label": "Client secret",
"description": "Client Secret of Azure Active directory Application with access to the Log Analytics Workspace"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
"label": "Need additional help?",
"description": "More details on the data source setting can be found in the specified link"
},
"selfSignedCert": {
"label": "Microsoft Azure Sentinel Certificate",
"label": "Microsoft Azure Sentinel certificate",
"description": "Use SSL certificate for Microsoft Azure Sentinel."
},
"sni": {
Expand All @@ -28,11 +28,11 @@
"description": "Tenant ID of Azure Active directory Application with access to the Microsoft Graph API"
},
"clientId": {
"label": "Client Id",
"label": "Client ID",
"description": "Client ID of Azure Active directory Application with access to the Microsoft Graph API"
},
"clientSecret": {
"label": "Client Secret",
"label": "Client secret",
"description": "Client Secret of Azure Active directory Application with access to the Microsoft Graph API"
}
}
Expand Down
4 changes: 2 additions & 2 deletions stix_shifter_modules/bigfix/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
"label": "Need additional help?",
"description": "More details on the data source setting can be found in the specified link"
},
"selfSignedCert": {
"label": "BigFix Certificate",
"label": "BigFix certificate",
"description": "Use self-signed Security Sockets Layer (SSL) or CA-signed certificate for secure communication between web reports or REST API server and the authorized user"
},
"sni": {
Expand Down
8 changes: 4 additions & 4 deletions stix_shifter_modules/carbonblack/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
Expand All @@ -23,7 +23,7 @@
},
"options": {
"events_mode": {
"label": "Include Process Events?",
"label": "Include process events?",
"description": "When enabled results will include process events. When disabled only process metadata will be included."
}
}
Expand All @@ -32,8 +32,8 @@
"auth": {
"type": "fields",
"token": {
"label": "API Token",
"description": "API Token of the CarbonBlack response account"
"label": "API token",
"description": "API token of the CarbonBlack response account"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion stix_shifter_modules/cbcloud/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
Expand Down
6 changes: 3 additions & 3 deletions stix_shifter_modules/crowdstrike/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
Expand All @@ -18,11 +18,11 @@
"auth": {
"type" : "fields",
"client_id": {
"label": "Client Id",
"label": "Client ID",
"description": "Unique identifier of CrowdStrike API. It can be found in the API client table in the Falcon console"
},
"client_secret": {
"label": "Client Secret",
"label": "Client secret",
"description": "Secret code of CrowdStrike API client. It can be found while creating a API client in Falcon console"
}
}
Expand Down
2 changes: 1 addition & 1 deletion stix_shifter_modules/cybereason/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
Expand Down
4 changes: 2 additions & 2 deletions stix_shifter_modules/darktrace/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
"configuration": {
"auth": {
"private_token": {
"label": "Private Token",
"label": "Private token",
"description": "Private tokens are used in token-based authentication to access an API."
},
"public_token": {
"label": "Public Token",
"label": "Public token",
"description": "Public tokens are used in token-based authentication to access an API."
}
}
Expand Down
2 changes: 1 addition & 1 deletion stix_shifter_modules/datadog/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Specify the Site URL of the datasource"
},
"selfSignedCert": {
"label": "Datadog Certificate",
"label": "Datadog certificate",
"placeholder": "Paste your certificate"
},
"help": {
Expand Down
4 changes: 2 additions & 2 deletions stix_shifter_modules/demo_template/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
"label": "Need additional help?",
"description": "More details on the data source setting can be found in the specified link"
},
"selfSignedCert": {
"label": "<Module> Connection Certificate",
"label": "<Module> connection certificate",
"description": "Use self-signed SSL certificate and CA content(root and intermediate) of data source"
},
"sni": {
Expand Down
8 changes: 4 additions & 4 deletions stix_shifter_modules/elastic_ecs/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
Expand Down Expand Up @@ -38,15 +38,15 @@
"description": "Password of the user with access to the search API"
},
"access_token": {
"label": "Access Token (Token Based Access)",
"label": "Access token (Token based access)",
"description": "Access Token is required for token based authentication"
},
"api_key": {
"label": "API Key (Key Based Access)",
"label": "API key (Key based access)",
"description": "API Key is required for Key based authentication"
},
"id": {
"label": "ID (Key Based Access)",
"label": "ID (Key based access)",
"description": "ID is required for Key based authentication with API Key"
}
}
Expand Down
6 changes: 3 additions & 3 deletions stix_shifter_modules/gcp_chronicle/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
"description": "More details on the data source setting can be found in the specified link"
},
"selfSignedCert": {
"label": "Private Key (Required)",
"label": "Private key (Required)",
"description": "Private Key is a mandatory authentication parameter to communicate with the GCP Chronicle security datasource."
}
},
"configuration": {
"auth": {
"client_email": {
"label": "Client Email",
"description": "Client Email used in authentication to make API calls"
"label": "Client email",
"description": "Client email used in authentication to make API calls"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions stix_shifter_modules/guardium/configuration/lang_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Specify the IP address or hostname of the data source"
},
"port": {
"label": "Host Port",
"label": "Host port",
"description": "Set the port number that is associated with the hostname or IP address"
},
"help": {
Expand All @@ -26,7 +26,7 @@
"description": "Client ID associated with the data source"
},
"client_secret": {
"label": "Client Secret",
"label": "Client secret",
"description": "Client Secret associated with the data source"
}
},
Expand Down
Loading