diff --git a/core/modules/help_topics/help_topics/core.content_structure.html.twig b/core/modules/help_topics/help_topics/core.content_structure.html.twig
index 5fb1209..b381650 100644
--- a/core/modules/help_topics/help_topics/core.content_structure.html.twig
+++ b/core/modules/help_topics/help_topics/core.content_structure.html.twig
@@ -26,7 +26,7 @@ top_level: true
{% trans %}Text (Text module): Stores formatted and unformatted text; see section below for more on text fields.{% endtrans %}
{% trans %}What settings are available for List field types?{% endtrans %}
-{% trans %}List fields associate pre-defined keys (or value codes) with labels that the user sees. For example, you might define a list field that shows the user the names of several locations, while behind the scenes a location code is stored in the database. Different list field types depend on the type of the value code; for example, a List (integer) field has integer values, while the values of a List (text) field are text strings. Once you have chosen the field type, the main setting for a list field is the Allowed values list, which associates the keys with the labels.{% endtrans %}
+{% trans %}List fields associate pre-defined keys (or value codes) with labels that the user sees. For example, you might define a list field that shows the user the names of several locations, while behind the scenes a location code is stored in the database. Each list field type corresponds to one type of stored key. For example, a List (integer) field stores integers, while the List (text) field stores text strings. Once you have chosen the field type, the main setting for a list field is the Allowed values list, which associates the keys with the labels.{% endtrans %}
{% trans %}What types of Text fields are available?{% endtrans %}
{% trans %}There are several types of text fields, with different characteristics. Text fields can be either plain or formatted: plain text fields do not contain HTML, while formatted fields can contain HTML and are processed through text filters (these are provided by the core Filter module; if you have that module enabled, see the related topic below on filters for more information). Text fields can also be regular-length (with a limit of 255 characters) or long (with a very large character limit), and long formatted text fields can include a summary attribute. All possible combinations of these characteristics exist as text field types; for example, Text (plain) and Text (formatted, long, with summary) are two examples of text field types. {% endtrans %}
{% trans %}What is a formatter?{% endtrans %}
diff --git a/core/modules/help_topics/help_topics/editor.overview.html.twig b/core/modules/help_topics/help_topics/editor.overview.html.twig
index 600048e..e381e55 100644
--- a/core/modules/help_topics/help_topics/editor.overview.html.twig
+++ b/core/modules/help_topics/help_topics/editor.overview.html.twig
@@ -18,6 +18,6 @@ related:
{% trans %}Select CKEditor as the Text editor, or another text editor that you have installed. The rest of these steps assume you selected CKEditor.{% endtrans %}
{% trans %}Under Toolbar configuration, drag buttons between Available buttons and Active toolbar; only buttons in Active toolbar will be shown to the user. If you are using a mouse, you can hover over a button to see a tooltip explaining what the button does.{% endtrans %}
{% trans %}Drag buttons within Active toolbar to the desired order, and group buttons by dragging them into the grouping boxes; click Add group to add additional groups.{% endtrans %}
- {% trans %}Under CKEditor plugin settings, configure any buttons that have the configuration. This section will not be present if there are no active buttons with configuration.{% endtrans %}
+ {% trans %}Under CKEditor plugin settings, configure the buttons that have configuration. This section will not be present if there are no active buttons with configuration.{% endtrans %}
{% trans %}Return to Managing text filters and text formats to complete the text format configuration, and be sure to save the text format.{% endtrans %}
diff --git a/core/modules/help_topics/help_topics/filter.overview.html.twig b/core/modules/help_topics/help_topics/filter.overview.html.twig
index e4a88c7..8beb2a7 100644
--- a/core/modules/help_topics/help_topics/filter.overview.html.twig
+++ b/core/modules/help_topics/help_topics/filter.overview.html.twig
@@ -23,14 +23,14 @@ related:
{% trans %}Convert URLs into links{% endtrans %}
{% trans %}Takes plain URLs in text and turns them into HTML links.{% endtrans %}
{% trans %}Restrict images to this site{% endtrans %}
- {% trans %}For text formats that allow HTML image tags, restrict images to URLs within this site.{% endtrans %}
+ {% trans %}For text formats that allow HTML image tags, restricts images to URLs within this site.{% endtrans %}
{% trans %}Steps{% endtrans %}
- {% trans %}In the Manage administrative menu, navigate to Configuration > Content Authoring > Text formats and editors. If you do not have the core Text Editor module installed, the menu link and page title will instead be Text formats.{% endtrans %}
- {% trans %}Click Configure to configure an existing text format, or + Add text format to create a new text format.{% endtrans %}
- {% trans %}Enter the desired Name for the text format.{% endtrans %}
- - {% trans %}Check the Roles that can use this text format. To ensure security, anonymous and untrusted users should only have access to text formats that restrict them to either plain text or a safe set of HTML tags because HTML tags can allow embedding malicious links or scripts in text. Improper text format configuration is a security risk.{% endtrans %}
+ - {% trans %}Check the Roles that can use this text format. Some HTML tags allow users to embed malicious links or scripts in text. To ensure security, anonymous and untrusted users should only have access to text formats that restrict them to either plain text or a safe set of HTML tags. Improper text format configuration is a security risk.{% endtrans %}
- {% trans %}If the core Text Editor module is installed, see the related topic to connect a text editor to this text format.{% endtrans %}
- {% trans %}Under Enabled filters, check the text filters that you want to use.{% endtrans %}
- {% trans %}Under Filter processing order, drag the filters to the correct order. Choose the order carefully; for example, if you have a filter that results in a particular HTML tag being added to the text, that should run after a filter that restricts HTML tags, to avoid deleting the new tags the first filter added.{% endtrans %}