diff --git a/framework/PageSettings/usePageSettingOptions.tsx b/framework/PageSettings/usePageSettingOptions.tsx index 061ccadcaf..96568cdbfe 100644 --- a/framework/PageSettings/usePageSettingOptions.tsx +++ b/framework/PageSettings/usePageSettingOptions.tsx @@ -60,17 +60,17 @@ export function usePageSettingsOptions(): IPageSettingsOption[] { { name: 'formColumns', label: t('Form columns'), - helpText: t('Allows diplaying forms and details in a single or multiple columns.'), + helpText: t('Allows displaying forms and details in a single or multiple columns.'), options: [ { label: t('Single'), value: 'single', - description: 'Display forms and details using a single column.', + description: t('Display forms and details using a single column.'), }, { label: t('Multiple'), value: 'multiple', - description: 'Display forms and details using multiple columns.', + description: t('Display forms and details using multiple columns.'), }, ], defaultValue: 'multiple', @@ -89,7 +89,7 @@ export function usePageSettingsOptions(): IPageSettingsOption[] { { label: t('Date and time'), value: 'date-time', - description: 'Show dates as date and time.', + description: t('Show dates as date and time.'), }, ], defaultValue: 'date-time', diff --git a/frontend/awx/administration/execution-environments/hooks/useExecutionEnvRowActions.tsx b/frontend/awx/administration/execution-environments/hooks/useExecutionEnvRowActions.tsx index 1810f175f1..812b184c38 100644 --- a/frontend/awx/administration/execution-environments/hooks/useExecutionEnvRowActions.tsx +++ b/frontend/awx/administration/execution-environments/hooks/useExecutionEnvRowActions.tsx @@ -69,7 +69,7 @@ export function useExecutionEnvRowActions({ onDelete, onCopy }: ExecutionEnviron .catch((error) => { alertToaster.replaceAlert(alert, { variant: 'danger', - title: t('Failed to copy execution envirionment'), + title: t('Failed to copy execution environment'), children: error instanceof Error && error.message, }); }); diff --git a/frontend/awx/resources/inventories/components/ConstructedInventoryHint.tsx b/frontend/awx/resources/inventories/components/ConstructedInventoryHint.tsx index 8937186b8f..320d4933f2 100644 --- a/frontend/awx/resources/inventories/components/ConstructedInventoryHint.tsx +++ b/frontend/awx/resources/inventories/components/ConstructedInventoryHint.tsx @@ -167,7 +167,7 @@ groups: {limitToIntersectionLimit} - + diff --git a/frontend/hub/access/token/Token.tsx b/frontend/hub/access/token/Token.tsx index dd33b0117d..69ac12a08b 100644 --- a/frontend/hub/access/token/Token.tsx +++ b/frontend/hub/access/token/Token.tsx @@ -23,7 +23,7 @@ export function Token() { if (err instanceof Error) { setError(err.message); } else { - setError(t('An unknown error occured.')); + setError(t('An unknown error occurred.')); } } finally { setWorking(false); diff --git a/frontend/hub/collections/CollectionPage/documentationComponents/CollectionDocumentationTabContent.tsx b/frontend/hub/collections/CollectionPage/documentationComponents/CollectionDocumentationTabContent.tsx index 17a5b646b2..1cd8150fde 100644 --- a/frontend/hub/collections/CollectionPage/documentationComponents/CollectionDocumentationTabContent.tsx +++ b/frontend/hub/collections/CollectionPage/documentationComponents/CollectionDocumentationTabContent.tsx @@ -273,7 +273,7 @@ export function CollectionDocumentationTabContent(props: { {content?.content_type !== 'module' && ( - {t('Coonfiguration')} + {t('Configuration')} )} diff --git a/frontend/hub/collections/hooks/useDeprecateOrUndeprecateCollections.tsx b/frontend/hub/collections/hooks/useDeprecateOrUndeprecateCollections.tsx index 684a5bb75c..5206d02187 100644 --- a/frontend/hub/collections/hooks/useDeprecateOrUndeprecateCollections.tsx +++ b/frontend/hub/collections/hooks/useDeprecateOrUndeprecateCollections.tsx @@ -22,7 +22,7 @@ export function useDeprecateOrUndeprecateCollections( title: type === 'deprecate' ? t('Permanently deprecate collections') - : t('Premanently undeprecate collections'), + : t('Permanently undeprecate collections'), confirmText: type === 'deprecate'