Make sure all the settings which shouldn't be translatable are marked accordingly.
The Drupal 10.2.7 update encountered a bug due to a configuration value being unexpectedly translated from default to predeterminado. (This because a third-party module had introduced a translation for the string "default".)
The goal of this task is therefore to examine our schemas and evaluate whether any of the configurable items are intended to be viewed as constant values (e.g. enumerated values for the value attribute in a drop-down list's <option> tag).
Locations to check are all custom module's module_name/config/schema directory, plus the profile's cgov_site/config/schema directory.
Make sure all the settings which shouldn't be translatable are marked accordingly.
The Drupal 10.2.7 update encountered a bug due to a configuration value being unexpectedly translated from
default
topredeterminado
. (This because a third-party module had introduced a translation for the string "default".)The goal of this task is therefore to examine our schemas and evaluate whether any of the configurable items are intended to be viewed as constant values (e.g. enumerated values for the
value
attribute in a drop-down list's<option>
tag).Locations to check are all custom module's
module_name/config/schema
directory, plus the profile'scgov_site/config/schema
directory.Schema files at the time of writing are
./docroot/profiles/custom/cgov_site/config/schema/cgov_site.schema.yml
./docroot/profiles/custom/cgov_site/modules/custom/cgov_syndication/config/schema/cgov_syndication.schema.yml
./docroot/profiles/custom/cgov_site/modules/custom/cgov_mail/config/schema/cgov_mail.schema.yml
./docroot/profiles/custom/cgov_site/modules/custom/cgov_schema_org/config/schema/cgov_schema_org.schema.yml
./docroot/profiles/custom/cgov_site/modules/custom/cgov_core/config/schema/cgov_core.schema.yml
./docroot/profiles/custom/cgov_site/modules/custom/cgov_list/config/schema/viewsreference.schema.yml
./docroot/profiles/custom/cgov_site/themes/custom/cgov/cgov_common/config/schema/cgov_common.schema.yml
./docroot/profiles/custom/cgov_site/themes/custom/ncids_trans/config/schema/ncids_trans.schema.yml
./docroot/modules/custom/app_module/config/schema/app_module.schema.yml
./docroot/modules/custom/cgov_adobe/config/schema/cgov_adobe.schema.yml
./docroot/modules/custom/json_data_field/config/schema/json_data_field.schema.yml
Resources:
Prerequisites
Sub-Tasks
Notes