diff --git a/awx/ui_next/src/components/JobList/JobList.jsx b/awx/ui_next/src/components/JobList/JobList.jsx index a96e5f3924..403f5bfc9a 100644 --- a/awx/ui_next/src/components/JobList/JobList.jsx +++ b/awx/ui_next/src/components/JobList/JobList.jsx @@ -126,7 +126,7 @@ function JobList({ i18n, defaultParams, showTypeColumn = false }) { hasContentLoading={isLoading || isDeleteLoading} items={jobs} itemCount={itemCount} - pluralizedItemName="Jobs" + pluralizedItemName={i18n._(t`Jobs`)} qsConfig={QS_CONFIG} onRowClick={handleSelect} toolbarSearchColumns={[ diff --git a/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.jsx b/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.jsx index d16ebf2a5b..10ac42b77f 100644 --- a/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.jsx +++ b/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.jsx @@ -162,7 +162,7 @@ class ResourceAccessList extends React.Component { hasContentLoading={hasContentLoading} items={accessRecords} itemCount={itemCount} - pluralizedItemName="Roles" + pluralizedItemName={i18n._(t`Roles`)} qsConfig={QS_CONFIG} toolbarSearchColumns={[ { diff --git a/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.jsx b/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.jsx index ce4c11fe0f..d2bc4a4bc2 100644 --- a/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.jsx +++ b/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.jsx @@ -108,7 +108,7 @@ function OrganizationsList({ i18n }) { hasContentLoading={hasContentLoading} items={organizations} itemCount={organizationCount} - pluralizedItemName="Organizations" + pluralizedItemName={i18n._(t`Organizations`)} qsConfig={QS_CONFIG} onRowClick={handleSelect} toolbarSearchColumns={[ diff --git a/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeams.jsx b/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeams.jsx index 1fb0e88c89..70965ad1da 100644 --- a/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeams.jsx +++ b/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeams.jsx @@ -47,7 +47,7 @@ function OrganizationTeams({ id, i18n }) { hasContentLoading={hasContentLoading} items={teams} itemCount={itemCount} - pluralizedItemName="Teams" + pluralizedItemName={i18n._(t`Teams`)} qsConfig={QS_CONFIG} toolbarSearchColumns={[ { diff --git a/awx/ui_next/src/screens/User/UserList/UserList.jsx b/awx/ui_next/src/screens/User/UserList/UserList.jsx index 48d81af749..e64ff44280 100644 --- a/awx/ui_next/src/screens/User/UserList/UserList.jsx +++ b/awx/ui_next/src/screens/User/UserList/UserList.jsx @@ -151,7 +151,7 @@ class UsersList extends Component { hasContentLoading={hasContentLoading} items={users} itemCount={itemCount} - pluralizedItemName="Users" + pluralizedItemName={i18n._(t`Users`)} qsConfig={QS_CONFIG} onRowClick={this.handleSelect} toolbarSearchColumns={[