Skip to content
Open
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
2 changes: 1 addition & 1 deletion frontend/packages/helm-plugin/locales/en/helm-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
"The OCI URL or HTTP/HTTPS tar file for the Helm chart; for example - oci://registry.example.com/charts/mychart or https://example.com/chart-1.0.0.tgz.": "The OCI URL or HTTP/HTTPS tar file for the Helm chart; for example - oci://registry.example.com/charts/mychart or https://example.com/chart-1.0.0.tgz.",
"Unique name for Helm release.": "Unique name for Helm release.",
"The version of chart to install.": "The version of chart to install.",
"Secret for basic authentication": "Secret for basic authentication",
"Secret for Basic authentication": "Secret for Basic authentication",
"Select a secret": "Select a secret",
"A secret with \"username\" and \"password\" keys for OCI/HTTP(S) authentication": "A secret with \"username\" and \"password\" keys for OCI/HTTP(S) authentication",
"Next": "Next",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const HelmURLChartForm: FC<FormikProps<HelmURLChartFormData> & HelmURLChartFormP
<GridItem md={12}>
<ResourceDropdownField
name="basicAuthSecretName"
label={t('helm-plugin~Secret for basic authentication')}
label={t('helm-plugin~Secret for Basic authentication')}
resources={secretResources}
dataSelector={['metadata', 'name']}
fullWidth
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const HelmURLInstallForm: FC<FormikProps<HelmURLInstallFormData> & HelmURLInstal
<GridItem xl={3} lg={3} md={12}>
<ResourceDropdownField
name="basicAuthSecretName"
label={t('helm-plugin~Secret for basic authentication')}
label={t('helm-plugin~Secret for Basic authentication')}
resources={secretResources}
dataSelector={['metadata', 'name']}
fullWidth
Expand Down