diff --git a/app/models/scheme.rb b/app/models/scheme.rb index 50f94bbbc..2397f8451 100644 --- a/app/models/scheme.rb +++ b/app/models/scheme.rb @@ -250,7 +250,7 @@ class Scheme < ApplicationRecord { name: "Status", value: status, id: "status" }, { name: "Confidential information", value: sensitive, id: "sensitive", edit: true }, { name: "Type of scheme", value: scheme_type, id: "scheme_type", edit: true }, - { name: "Registered under Care Standards Act 2000", value: registered_under_care_act, id: "registered_under_care_act", edit: true }, + { name: "Regulated by the Care Quality Commission", value: registered_under_care_act, id: "registered_under_care_act", edit: true }, { name: "Housing stock owned by", value: owning_organisation.name, id: "owning_organisation_id", edit: true }, { name: "Support services provided by", value: arrangement_type, id: "arrangement_type", edit: true }, { name: "Primary client group", value: primary_client_group, id: "primary_client_group", edit: true }, diff --git a/app/views/schemes/details.html.erb b/app/views/schemes/details.html.erb index 6a459263f..e346cafdd 100644 --- a/app/views/schemes/details.html.erb +++ b/app/views/schemes/details.html.erb @@ -43,7 +43,7 @@ :id, :name, :description, - legend: { text: "Is this scheme registered under the Care Standards Act 2000?", size: "m" } %> + legend: { text: "Is the scheme regulated by the Care Quality Commission (CQC)?", size: "m" } %> <% scheme_owning_organisation_options = owning_organisation_options(current_user) %> diff --git a/app/views/schemes/new.html.erb b/app/views/schemes/new.html.erb index 1869e6ee3..2af655d8f 100644 --- a/app/views/schemes/new.html.erb +++ b/app/views/schemes/new.html.erb @@ -38,7 +38,7 @@ :id, :name, :description, - legend: { text: "Is this scheme registered under the Care Standards Act 2000?", size: "m" } %> + legend: { text: "Is the scheme regulated by the Care Quality Commission (CQC)?", size: "m" } %> <% if current_user.data_coordinator? && current_user.organisation.stock_owners.count.zero? && !current_user.organisation.has_recent_absorbed_organisations? %> <%= f.hidden_field :owning_organisation_id, value: current_user.organisation.id %>