diff --git a/core/modules/help_topics/help_topics/aggregator.creating.html.twig b/core/modules/help_topics/help_topics/aggregator.creating.html.twig index a53a8886cf..bb397831b8 100644 --- a/core/modules/help_topics/help_topics/aggregator.creating.html.twig +++ b/core/modules/help_topics/help_topics/aggregator.creating.html.twig @@ -4,15 +4,16 @@ related: - aggregator.overview - aggregator.managing --- -{% set aggregator_overview_url = render_var(help_route_link('aggregator.admin_overview')) %} +{% set overview_link_text %}{% trans %}Aggregator{% endtrans %}{% endset %} +{% set overview_link = render_var(help_route_link(overview_link_text, 'aggregator.admin_overview')) %}

{% trans %}Goal{% endtrans %}

{% trans %}Create a new feed to display syndicated data from an outside source on your website, or import an OPML file to create multiple feeds.{% endtrans %}

{% trans %}Steps{% endtrans %}

    -
  1. {% trans %}In the Manage administrative menu, navigate to Configuration > Web services > Aggregator.{% endtrans %}
  2. +
  3. {% trans %}In the Manage administrative menu, navigate to Configuration > Web services > {{ overview_link }}.{% endtrans %}
  4. {% trans %}Click Add feed if you have an individual feed URL to add, or Import OPML if you have an OPML-formatted list of feeds to add.{% endtrans %}
  5. {% trans %}If you clicked Add feed, enter a Title for the feed and the URL of the feed. Select an Update interval and click Save.{% endtrans %}
  6. {% trans %}If you clicked Import OPML, either choose an OPML file from your local computer or enter an OPML Remote URL to import an OPML list from a URL. Select an Update interval and click Import.{% endtrans %}
  7. -
  8. {% trans %}In the Manage administrative menu, navigate back to Configuration > Web services > Aggregator. You should see the new feed or feeds that you added in the list under Feed overview.{% endtrans %}
  9. +
  10. {% trans %}In the Manage administrative menu, navigate back to Configuration > Web services > {{ overview_link }}. You should see the new feed or feeds that you added in the list under Feed overview.{% endtrans %}
  11. {% trans %}To verify that your feed is working, click Update items in the Operations list for your feed, and then click the feed name to view the imported items on the standard provided feed page.{% endtrans %}
diff --git a/core/modules/help_topics/help_topics/aggregator.managing.html.twig b/core/modules/help_topics/help_topics/aggregator.managing.html.twig index df9d6a4097..8e0cd8bd8e 100644 --- a/core/modules/help_topics/help_topics/aggregator.managing.html.twig +++ b/core/modules/help_topics/help_topics/aggregator.managing.html.twig @@ -4,12 +4,13 @@ related: - aggregator.overview - aggregator.creating --- -{% set aggregator_overview_url = render_var(help_route_link('aggregator.admin_overview')) %} +{% set overview_link_text %}{% trans %}Aggregator{% endtrans %}{% endset %} +{% set overview_link = render_var(help_route_link(overview_link_text, 'aggregator.admin_overview')) %}

{% trans %}Goal{% endtrans %}

{% trans %}Manage an existing feed or change its configuration.{% endtrans %}

{% trans %}Steps{% endtrans %}

    -
  1. {% trans %}In the Manage administrative menu, navigate to Configuration > Web services> Aggregator.{% endtrans %}
  2. +
  3. {% trans %}In the Manage administrative menu, navigate to Configuration > Web services> {{ overview_link }}.{% endtrans %}
  4. {% trans %}Click Edit in the Operations list for the feed you want to configure. Enter new values and click Save.{% endtrans %}
  5. {% trans %}Optionally, delete the previously-imported items from the feed by clicking Delete items in the Operations list for the feed.{% endtrans %}
  6. {% trans %}Optionally, import new items from the feed by clicking Update items in the Operations list for the feed. You can also run the site Cron process to import items into all feeds, depending on the configured Update interval for each feed.{% endtrans %}
  7. diff --git a/core/modules/help_topics/help_topics/ban.banning_ips.html.twig b/core/modules/help_topics/help_topics/ban.banning_ips.html.twig index 1deeb548ed..160b02773f 100644 --- a/core/modules/help_topics/help_topics/ban.banning_ips.html.twig +++ b/core/modules/help_topics/help_topics/ban.banning_ips.html.twig @@ -3,12 +3,13 @@ label: 'Banning IP addresses' related: - user.overview --- -{% set ban = render_var(help_route_link('ban.admin_page')) %} +{% set ban_link_text %}{% trans %}IP address bans{% endtrans %}{% endset %} +{% set ban_link = render_var(help_route_link(ban_link_text, 'ban.admin_page')) %}

    {% trans %}Goal{% endtrans %}

    {% trans %}Ban visitors from one or more IP addresses from accessing and viewing your site.{% endtrans %}

    {% trans %}Steps{% endtrans %}

      -
    1. {% trans %}In the Manage administrative menu, navigate to Configuration > People > IP address bans{% endtrans %}
    2. +
    3. {% trans %}In the Manage administrative menu, navigate to Configuration > People > {{ ban_link }}{% endtrans %}
    4. {% trans %}Enter an IP address and click Add.{% endtrans %}
    5. {% trans %}You should see the IP address you entered listed under Banned IP addresses. Repeat the above steps to ban additional IP addresses.{% endtrans %}
    diff --git a/core/modules/help_topics/help_topics/block.configure.html.twig b/core/modules/help_topics/help_topics/block.configure.html.twig index e39063bb6e..cd95c8b77b 100644 --- a/core/modules/help_topics/help_topics/block.configure.html.twig +++ b/core/modules/help_topics/help_topics/block.configure.html.twig @@ -4,12 +4,13 @@ related: - block.overview - core.ui_accessibility --- -{% set layout_url = render_var(help_route_link('block.admin_display')) %} +{% set layout_link_text %}{% trans %}Block layout{% endtrans %}{% endset %} +{% set layout_link = render_var(help_route_link(layout_link_text, 'block.admin_display')) %}

    {% trans %}Goal{% endtrans %}

    {% trans %}Configure the settings of a block that was previously placed in a region of a theme.{% endtrans %}

    {% trans %}Steps{% endtrans %}

      -
    1. {% trans %}In the Manage administrative menu, navigate to Structure > Block layout.{% endtrans %}
    2. +
    3. {% trans %}In the Manage administrative menu, navigate to Structure > {{ layout_link }}.{% endtrans %}
    4. {% trans %}Click the name of the theme that contains the block.{% endtrans %}
    5. {% trans %}Optionally, click Demonstrate block regions to see the regions of the theme.{% endtrans %}
    6. {% trans %}If you only want to change the region where a block is located, or the ordering of blocks within a region, drag blocks to their desired positions and click Save blocks.{% endtrans %}
    7. diff --git a/core/modules/help_topics/help_topics/block_content.add.html.twig b/core/modules/help_topics/help_topics/block_content.add.html.twig index 56f2b78452..002a47ba1b 100644 --- a/core/modules/help_topics/help_topics/block_content.add.html.twig +++ b/core/modules/help_topics/help_topics/block_content.add.html.twig @@ -6,12 +6,13 @@ related: - block.place - block_content.type --- -{% set content_url = render_var(help_route_link('entity.block_content.collection')) %} +{% set library_link_text %}{% trans %}Custom block library{% endtrans %}{% endset %} +{% set library_link = render_var(help_route_link(library_link_text, 'entity.block_content.collection')) %}

      {% trans %}Goal{% endtrans %}

      {% trans %}Create a custom block, which can later be placed on the site.{% endtrans %}

      {% trans %}Steps{% endtrans %}

        -
      1. {% trans %}In the Manage administrative menu, navigate to Structure > Block layout > Custom block library.{% endtrans %}
      2. +
      3. {% trans %}In the Manage administrative menu, navigate to Structure > Block layout > {{ library_link }}.{% endtrans %}
      4. {% trans %}Click Add custom block. If you have more than one custom block type defined on your site, click the name of the type you want to create.{% endtrans %}
      5. {% trans %}Enter a description of your block (to be shown to administrators) and the body text for your block.{% endtrans %}
      6. {% trans %}Click Save.{% endtrans %}
      7. diff --git a/core/modules/help_topics/help_topics/block_content.type.html.twig b/core/modules/help_topics/help_topics/block_content.type.html.twig index 2cb5ce12f1..1b91c6366f 100644 --- a/core/modules/help_topics/help_topics/block_content.type.html.twig +++ b/core/modules/help_topics/help_topics/block_content.type.html.twig @@ -9,12 +9,13 @@ related: - field_ui.manage_form - field_ui.manage_display --- -{% set types_url = render_var(help_route_link('entity.block_content_type.collection')) %} +{% set types_link_text %}{% trans %}Block types{% endtrans %}{% endset %} +{% set types_link = render_var(help_route_link(types_link_text, 'entity.block_content_type.collection')) %}

        {% trans %}Goal{% endtrans %}

        {% trans %}Define a custom block type and its fields.{% endtrans %}

        {% trans %}Steps{% endtrans %}

          -
        1. {% trans %}In the Manage administrative menu, navigate to Structure > Block layout > Custom block library > Block types.{% endtrans %}
        2. +
        3. {% trans %}In the Manage administrative menu, navigate to Structure > Block layout > Custom block library > {{ types_link }}.{% endtrans %}
        4. {% trans %}Click Add custom block type.{% endtrans %}
        5. {% trans %}Enter a label for this block type (shown in the administrative interface). Optionally, edit the automatically-generated machine name or the description.{% endtrans %}
        6. {% trans %}Click Save. You will be returned to the Block types page.{% endtrans %}
        7. diff --git a/core/modules/help_topics/help_topics/book.adding.html.twig b/core/modules/help_topics/help_topics/book.adding.html.twig index 7acc98eba0..1595a7f5b9 100644 --- a/core/modules/help_topics/help_topics/book.adding.html.twig +++ b/core/modules/help_topics/help_topics/book.adding.html.twig @@ -6,13 +6,14 @@ related: - book.creating - book.organizing --- -{% set node_add = render_var(help_route_link('node.add_page')) %} +{% set node_add_link_text %}{% trans %}Add content{% endtrans %}{% endset %} +{% set node_add_link = render_var(help_route_link(node_add_link_text, 'node.add_page')) %} {% set config = render_var(url('help.help_topic', {'id': 'book.configuring'})) %}

          {% trans %}Goal{% endtrans %}

          {% trans %}Add a page to an existing book.{% endtrans %}

          {% trans %}Steps{% endtrans %}

            -
          1. {% trans %}In the Manage administrative menu, navigate to Content > Add content > Book page. If you have configured additional content types that can be added to books, you can substitute a different content type for Book page (see the Configuring books topic for more information).{% endtrans %}
          2. +
          3. {% trans %}In the Manage administrative menu, navigate to Content > {{ node_add_link }} > Book page. If you have configured additional content types that can be added to books, you can substitute a different content type for Book page (see the Configuring books topic for more information).{% endtrans %}
          4. {% trans %}Enter a title for the page and some text for the body of the page.{% endtrans %}
          5. {% trans %}In the vertical tabs area, click Book Outline. Select the book you want to add the page to in the Book select list. If you want to insert this page into the book hierarchy, also select the desired parent page in the Parent item select list.{% endtrans %}
          6. {% trans %}Select the desired weight for the page in the Weight select list (pages with the same parent item are ordered from lowest to highest weight).{% endtrans %}
          7. diff --git a/core/modules/help_topics/help_topics/book.configuring.html.twig b/core/modules/help_topics/help_topics/book.configuring.html.twig index 45c89f24d7..74bd6e105b 100644 --- a/core/modules/help_topics/help_topics/book.configuring.html.twig +++ b/core/modules/help_topics/help_topics/book.configuring.html.twig @@ -6,12 +6,13 @@ related: - book.creating - book.organizing --- -{% set settings = render_var(help_route_link('book.settings')) %} +{% set settings_link_text %}{% trans %}Settings{% endtrans %}{% endset %} +{% set settings_link = render_var(help_route_link(settings_link_text, 'book.settings')) %}

            {% trans %}Goal{% endtrans %}

            {% trans %}Configure settings related to books.{% endtrans %}

            {% trans %}Steps{% endtrans %}

              -
            1. {% trans %}In the Manage administrative menu, navigate to Structure > Books > Settings.{% endtrans %}
            2. +
            3. {% trans %}In the Manage administrative menu, navigate to Structure > Books > {{ settings_link }}.{% endtrans %}
            4. {% trans %}Check all of the content types that you would like to use as book pages in the Content types allowed in book outlines field.{% endtrans %}
            5. {% trans %}In the Content type for the Add child page link field, select the content type that will be created from the Add child page link on a book page.{% endtrans %}
            6. {% trans %}Click Save configuration.{% endtrans %}
            7. diff --git a/core/modules/help_topics/help_topics/book.organizing.html.twig b/core/modules/help_topics/help_topics/book.organizing.html.twig index cb033b26c5..abda65fa74 100644 --- a/core/modules/help_topics/help_topics/book.organizing.html.twig +++ b/core/modules/help_topics/help_topics/book.organizing.html.twig @@ -6,12 +6,13 @@ related: - book.creating - book.configuring --- -{% set overview = render_var(help_route_link('book.admin')) %} +{% set overview_link_text %}{% trans %}Books{% endtrans %}{% endset %} +{% set overview_link = render_var(help_route_link(overview_link_text, 'book.admin')) %}

              {% trans %}Goal{% endtrans %}

              {% trans %}Change the order and titles of pages within a book.{% endtrans %}

              {% trans %}Steps{% endtrans %}

                -
              1. {% trans %}In the Manage administrative menu, navigate to Structure > Books.{% endtrans %}
              2. +
              3. {% trans %}In the Manage administrative menu, navigate to Structure > {{ overview_link }}.{% endtrans %}
              4. {% trans %}Click Edit order and titles for the book you would like to change.{% endtrans %}
              5. {% trans %}Drag the book pages to the desired order.{% endtrans %}
              6. {% trans %}If desired, enter new text for one or more of the page titles within the book.{% endtrans %}
              7. diff --git a/core/modules/help_topics/help_topics/color.changing.html.twig b/core/modules/help_topics/help_topics/color.changing.html.twig index 74655e038f..1a0790dfc2 100644 --- a/core/modules/help_topics/help_topics/color.changing.html.twig +++ b/core/modules/help_topics/help_topics/color.changing.html.twig @@ -3,12 +3,13 @@ label: 'Changing the color palette of a theme' related: - core.appearance --- -{% set appearance = render_var(help_route_link('system.themes_page')) %} +{% set appearance_link_text %}{% trans %}Appearance{% endtrans %}{% endset %} +{% set appearance_link = render_var(help_route_link(appearance_link_text, 'system.themes_page')) %}

                {% trans %}Goal{% endtrans %}

                {% trans %}Change the colors for links, backgrounds, and text in a theme that supports the Color module. Color-specific stylesheets will be generated and saved; you will need to follow these steps again to regenerate the stylesheets if you make any changes to the base stylesheets of your theme.{% endtrans %}

                {% trans %}Steps{% endtrans %}

                  -
                1. {% trans %}In the Manage administrative menu, navigate to Appearance.{% endtrans %}
                2. +
                3. {% trans %}In the Manage administrative menu, navigate to {{ appearance_link }}.{% endtrans %}
                4. {% trans %}Click the Settings link for the theme you want to change the colors of.{% endtrans %}
                5. {% trans %}In the Color scheme section, choose new colors for the backgrounds, text, and links that your theme defines colors for. However, if you do not see color settings, then your theme does not support the Color module.{% endtrans %}
                6. {% trans %}Click Save configuration. Color-specific stylesheets will be generated and saved in the file system.{% endtrans %}
                7. diff --git a/core/modules/help_topics/help_topics/config.export_full.html.twig b/core/modules/help_topics/help_topics/config.export_full.html.twig index b82f07341b..e50f732b9d 100644 --- a/core/modules/help_topics/help_topics/config.export_full.html.twig +++ b/core/modules/help_topics/help_topics/config.export_full.html.twig @@ -6,12 +6,13 @@ related: - config.export_single - config.import_single --- -{% set export = render_var(help_route_link('config.export_full')) %} +{% set export_link_text %}{% trans %}Export{% endtrans %}{% endset %} +{% set export_link = render_var(help_route_link(export_link_text, 'config.export_full')) %} {% set config_overview = render_var(url('help.help_topic', {'id': 'core.config_overview'})) %}

                  {% trans %}Goal{% endtrans %}

                  {% trans %}Create and download an archive containing all your site's configuration, exported as YAML files. See Managing and deploying configuration for more information about configuration.{% endtrans %}

                  {% trans %}Steps{% endtrans %}

                    -
                  1. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Configuration synchronization > Export.{% endtrans %}
                  2. +
                  3. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Configuration synchronization > {{ export_link }}.{% endtrans %}
                  4. {% trans %}Click Export and save the archive file.{% endtrans %}
                  diff --git a/core/modules/help_topics/help_topics/config.export_single.html.twig b/core/modules/help_topics/help_topics/config.export_single.html.twig index fd43a245f4..2708ed4409 100644 --- a/core/modules/help_topics/help_topics/config.export_single.html.twig +++ b/core/modules/help_topics/help_topics/config.export_single.html.twig @@ -6,13 +6,14 @@ related: - config.import_full - config.import_single --- -{% set single_export = render_var(help_route_link('config.export_single')) %} +{% set single_export_link_text %}{% trans %}Single item{% endtrans %}{% endset %} +{% set single_export_link = render_var(help_route_link(single_export_link_text, 'config.export_single')) %} {% set config_overview = render_var(url('help.help_topic', {'id': 'core.config_overview'})) %}

                  {% trans %}Goal{% endtrans %}

                  {% trans %}Export a single configuration item to a file. See Managing and deploying configuration for more information about configuration.{% endtrans %}

                  {% trans %}Steps{% endtrans %}

                    -
                  1. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Configuration synchronization > Export > Single item.{% endtrans %}
                  2. +
                  3. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Configuration synchronization > Export > {{ single_export_link }}.{% endtrans %}
                  4. {% trans %}Select the Configuration type that you want to export, and then select the specific Configuration name to export.{% endtrans %}
                  5. {% trans %}Use your browser to copy the text in the box marked Here is your configuration to the clipboard.{% endtrans %}
                  6. {% trans %}Paste the copied text into a plain-text editor on your computer or other device, and save it using the suggested file name below the text box.{% endtrans %} diff --git a/core/modules/help_topics/help_topics/config.import_full.html.twig b/core/modules/help_topics/help_topics/config.import_full.html.twig index 7a32ed9f21..e788e2f96b 100644 --- a/core/modules/help_topics/help_topics/config.import_full.html.twig +++ b/core/modules/help_topics/help_topics/config.import_full.html.twig @@ -6,14 +6,15 @@ related: - config.import_single - config.export_single --- -{% set import_page = render_var(help_route_link('config.import_full')) %} +{% set import_link_text %}{% trans %}Import{% endtrans %}{% endset %} +{% set import_link = render_var(help_route_link(import_link_text, 'config.import_full')) %} {% set export_full = render_var(url('help.help_topic', {'id': 'config.export_full'})) %} {% set config_overview = render_var(url('help.help_topic', {'id': 'core.config_overview'})) %}

                    {% trans %}Goal{% endtrans %}

                    {% trans %}Import the complete configuration of your site from an archive file, such as one that was previously exported (see Exporting your complete site configuration). See Managing and deploying configuration for more information about configuration.{% endtrans %}

                    {% trans %}Steps{% endtrans %}

                      -
                    1. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Configuration synchronization > Import.{% endtrans %}
                    2. +
                    3. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Configuration synchronization > {{ import_link }}.{% endtrans %}
                    4. {% trans %}Browse to find the Configuration archive that you want to import.{% endtrans %}
                    5. {% trans %}Click Upload. Your configuration archive will be unpacked and placed in the configuration synchronization directory, and you will be redirected to the Synchronize page.{% endtrans %}
                    6. {% trans %}Review the differences between your uploaded configuration and the active configuration, if any, and click Import all to import the changes.{% endtrans %}
                    7. diff --git a/core/modules/help_topics/help_topics/config.import_single.html.twig b/core/modules/help_topics/help_topics/config.import_single.html.twig index 0bc86f609d..b26e20f43c 100644 --- a/core/modules/help_topics/help_topics/config.import_single.html.twig +++ b/core/modules/help_topics/help_topics/config.import_single.html.twig @@ -6,14 +6,15 @@ related: - config.import_full - config.export_single --- -{% set single_import = render_var(help_route_link('config.import_single')) %} +{% set single_import_link_text %}{% trans %}Single item{% endtrans %}{% endset %} +{% set single_import_link = render_var(help_route_link(single_import_link_text, 'config.import_single')) %} {% set single_export = render_var(url('help.help_topic', {'id': 'config.export_single'})) %} {% set config_overview = render_var(url('help.help_topic', {'id': 'core.config_overview'})) %}

                      {% trans %}Goal{% endtrans %}

                      {% trans %}Import a single configuration item in YAML format, such as one that was previously exported (see Exporting a single configuration item). See Managing and deploying configuration for more information about configuration.{% endtrans %}

                      {% trans %}Steps{% endtrans %}

                        -
                      1. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Configuration synchronization > Import > Single item.{% endtrans %}
                      2. +
                      3. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Configuration synchronization > Import > {{ single_import_link }}.{% endtrans %}
                      4. {% trans %}Select the Configuration type that you want to import.{% endtrans %}
                      5. {% trans %}On your computer or other device, copy the YAML-format configuration that you want to import to the clipboard.{% endtrans %}
                      6. {% trans %}Paste the clipboard text into the box labeled Paste your configuration here.{% endtrans %}
                      7. diff --git a/core/modules/help_topics/help_topics/config_translation.overview.html.twig b/core/modules/help_topics/help_topics/config_translation.overview.html.twig index 86edee232b..51260f1207 100644 --- a/core/modules/help_topics/help_topics/config_translation.overview.html.twig +++ b/core/modules/help_topics/help_topics/config_translation.overview.html.twig @@ -5,14 +5,15 @@ related: - core.translations - language.add --- -{% set config_translation = render_var(help_route_link('config_translation.mapper_list'))%} +{% set config_translation_link_text %}{% trans %}Configuration translation{% endtrans %}{% endset %} +{% set config_translation_link = render_var(help_route_link(config_translation_link_text, 'config_translation.mapper_list'))%} {% set config_overview = render_var(url('help.help_topic', {'id': 'core.config_overview'})) %} {% set language_add = render_var(url('help.help_topic', {'id': 'language.add'})) %}

                        {% trans %}Goal{% endtrans %}

                        {% trans %}Translate your site configuration to another language. See Adding a language if you need to add a new language.{% endtrans %}

                        {% trans %}Steps{% endtrans %}

                          -
                        1. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > Configuration translation.{% endtrans %}
                        2. +
                        3. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > {{ config_translation_link }}.{% endtrans %}
                        4. {% trans %}Find either the configuration entity type or the simple configuration item that you want to translate in the Label column of the list. Click List under Operations for a configuration entity, or Translate for simple configuration. (See Managing and deploying configuration to learn more about types of configuration and configuration entities.){% endtrans %}
                        5. {% trans %}For configuration entities, find the specific entity that you want to translate on the next page, and click Translate under Operations.{% endtrans %}
                        6. {% trans %}Enter translations for the translatable text fields for the configuration item, and save.{% endtrans %}
                        7. diff --git a/core/modules/help_topics/help_topics/contact.adding_fields.html.twig b/core/modules/help_topics/help_topics/contact.adding_fields.html.twig index 88d5281937..70c881d79e 100644 --- a/core/modules/help_topics/help_topics/contact.adding_fields.html.twig +++ b/core/modules/help_topics/help_topics/contact.adding_fields.html.twig @@ -3,14 +3,15 @@ label: 'Managing the fields of contact forms' related: - contact.overview --- -{% set contact_url = render_var(help_route_link('entity.contact_form.collection')) %} +{% set contact_link_text %}{% trans %}Contact forms{% endtrans %}{% endset %} +{% set contact_link = render_var(help_route_link(contact_link_text, 'entity.contact_form.collection')) %}

                          {% trans %}Goal{% endtrans %}

                          {% trans %}Add, remove, or rearrange the fields on personal and site-wide contact forms.{% endtrans %}

                          {% trans %}What are the fields on contact forms?{% endtrans %}

                          {% trans %}Both personal and site-wide contact forms will always have Subject and Message fields. You can add additional fields for users to fill out if desired. Note that if you want to display other content on a form page, such as text or images, you can use a custom block.{% endtrans %}

                          {% trans %}Steps{% endtrans %}

                            -
                          1. {% trans %}In the Manage administrative menu, navigate to Structure > Contact forms.{% endtrans %}
                          2. +
                          3. {% trans %}In the Manage administrative menu, navigate to Structure > {{ contact_link }}.{% endtrans %}
                          4. {% trans %}Click Manage fields for the form you want to change the fields of, and add or remove one or more fields on the form.{% endtrans %}
                          5. {% trans %}Click Manage form display to change the order or configuration of the fields on the form.{% endtrans %}
                          diff --git a/core/modules/help_topics/help_topics/contact.configuring_personal.html.twig b/core/modules/help_topics/help_topics/contact.configuring_personal.html.twig index afbd36a4bf..3392481361 100644 --- a/core/modules/help_topics/help_topics/contact.configuring_personal.html.twig +++ b/core/modules/help_topics/help_topics/contact.configuring_personal.html.twig @@ -4,17 +4,19 @@ related: - contact.overview - contact.adding_fields --- -{% set config_url = render_var(help_route_link('entity.user.admin_form')) %} -{% set permission_url = render_var(help_route_link('user.admin_permissions')) %} +{% set config_link_text %}{% trans %}Account settings{% endtrans %}{% endset %} +{% set config_link = render_var(help_route_link(config_link_text, 'entity.user.admin_form')) %} +{% set permission_link_text %}{% trans %}Permissions{% endtrans %}{% endset %} +{% set permission_link = render_var(help_route_link(permission_link_text, 'user.admin_permissions')) %} {% set add_fields = render_var(url('help.help_topic', {'id': 'contact.adding_fields'})) %}

                          {% trans %}Goal{% endtrans %}

                          {% trans %}Configure personal contact forms for registered users on the website.{% endtrans %}

                          {% trans %}Steps{% endtrans %}

                            -
                          1. {% trans %}In the Manage administrative menu, navigate to Configuration > People > Account settings.{% endtrans %}
                          2. +
                          3. {% trans %}In the Manage administrative menu, navigate to Configuration > People > {{ config_link }}.{% endtrans %}
                          4. {% trans %}In the Contact settings section, check/uncheck the box to enable/disable the contact form for new user accounts.{% endtrans %}
                          5. {% trans %}Click Save configuration.{% endtrans %}
                          6. -
                          7. {% trans %}In the Manage administrative menu, navigate to People > Permissions.{% endtrans %}
                          8. +
                          9. {% trans %}In the Manage administrative menu, navigate to People > {{ permission_link }}.{% endtrans %}
                          10. {% trans %}Verify that permissions are correct for your site's roles, including the generic Anonymous user and Authenticated user. In order to use personal contact forms, users need both View user information (in the User section, which enables them to view user profiles) and Use users' personal contact forms (in the Contact section, which enables them to use contact forms if they can view user profiles).{% endtrans %}
                          11. {% trans %}Click Save permissions.{% endtrans %}
                          12. {% trans %}The contact form will always have Subject and Message fields. If you want to add more fields, follow the steps in Managing the fields of contact forms.{% endtrans %}
                          13. diff --git a/core/modules/help_topics/help_topics/contact.creating.html.twig b/core/modules/help_topics/help_topics/contact.creating.html.twig index 3d75c77909..ce805a79e1 100644 --- a/core/modules/help_topics/help_topics/contact.creating.html.twig +++ b/core/modules/help_topics/help_topics/contact.creating.html.twig @@ -5,13 +5,14 @@ related: - contact.adding_fields - contact.setting_default --- -{% set contact_url = render_var(help_route_link('entity.contact_form.collection')) %} +{% set contact_link_text %}{% trans %}Contact forms{% endtrans %}{% endset %} +{% set contact_link = render_var(help_route_link(contact_link_text, 'entity.contact_form.collection')) %} {% set add_fields = render_var(url('help.help_topic', {'id': 'contact.adding_fields'})) %}

                            {% trans %}Goal{% endtrans %}

                            {% trans %}Create a new site-wide contact form.{% endtrans %}

                            {% trans %}Steps{% endtrans %}

                              -
                            1. {% trans %}In the Manage administrative menu, navigate to Structure > Contact forms.{% endtrans %}
                            2. +
                            3. {% trans %}In the Manage administrative menu, navigate to Structure > {{ contact_link }}.{% endtrans %}
                            4. {% trans %}Click Add contact form.{% endtrans %}
                            5. {% trans %}Fill in the Label (title) for the form, Recipients, and optionally the other settings.{% endtrans %}
                            6. {% trans %}Click Save. You should see your new contact form in the table, along with a link to view it.{% endtrans %}
                            7. diff --git a/core/modules/help_topics/help_topics/contact.setting_default.html.twig b/core/modules/help_topics/help_topics/contact.setting_default.html.twig index a8f37cb46d..00e4febb2b 100644 --- a/core/modules/help_topics/help_topics/contact.setting_default.html.twig +++ b/core/modules/help_topics/help_topics/contact.setting_default.html.twig @@ -3,12 +3,13 @@ label: 'Setting a default contact form' related: - contact.overview --- -{% set contact_url = render_var(help_route_link('entity.contact_form.collection')) %} +{% set contact_link_text %}{% trans %}Contact forms{% endtrans %}{% endset %} +{% set contact_link = render_var(help_route_link(contact_link_text, 'entity.contact_form.collection')) %}

                              {% trans %}Goal{% endtrans %}

                              {% trans %}Set a site-wide contact form to be the default contact form (the form that is shown on the /contact URL).{% endtrans %}

                              {% trans %}Steps{% endtrans %}

                                -
                              1. {% trans %}In the Manage administrative menu, navigate to Structure > Contact forms.{% endtrans %}
                              2. +
                              3. {% trans %}In the Manage administrative menu, navigate to Structure > {{ contact_link }}.{% endtrans %}
                              4. {% trans %}Click Edit for the site-wide form you want to be the default.{% endtrans %}
                              5. {% trans %}Check Make this the default form and click Save.{% endtrans %}
                              diff --git a/core/modules/help_topics/help_topics/content_moderation.changing_states.html.twig b/core/modules/help_topics/help_topics/content_moderation.changing_states.html.twig index 3768be269f..2199588dd2 100644 --- a/core/modules/help_topics/help_topics/content_moderation.changing_states.html.twig +++ b/core/modules/help_topics/help_topics/content_moderation.changing_states.html.twig @@ -7,15 +7,17 @@ related: --- {% set workflow_topic = render_var(url('help.help_topic', {'id': 'workflows.overview'})) %} {% set entity_topic = render_var(url('help.help_topic', {'id': 'core.content_structure'})) %} -{% set content_moderation_permissions = render_var(help_route_link('user.admin_permissions', {}, {'fragment': 'module-content_moderation'})) %} -{% set content = render_var(help_route_link('system.admin_content')) %} +{% set content_moderation_permissions_link_text %}{% trans %}content moderation permissions{% endtrans %}{% endset %} +{% set content_moderation_permissions_link = render_var(help_route_link(content_moderation_permissions_link_text, 'user.admin_permissions', {}, {'fragment': 'module-content_moderation'})) %} +{% set content_link_text %}{% trans %}Content{% endtrans %}{% endset %} +{% set content_link = render_var(help_route_link(content_link_text, 'system.admin_content')) %}

                              {% trans %}Goal{% endtrans %}

                              {% trans %}Change the workflow state of a particular entity. See Managing content moderation workflows for an overview of workflows, and Managing content structure for an overview of content entities.{% endtrans %}

                              {% trans %}Who can change workflow states?{% endtrans %}

                              -

                              {% trans %}Users with the content moderation permissions can change workflow states. There are separate permissions for each transition.{% endtrans %}

                              +

                              {% trans %}Users with the {{ content_moderation_permissions_link}} can change workflow states. There are separate permissions for each transition.{% endtrans %}

                              {% trans %}Steps{% endtrans %}

                                -
                              1. {% trans %}Find the entity that you want to moderate in either the content moderation view page, if you created one, or the appropriate administrative page for managing that type of entity (such as the Content administration page for content items).{% endtrans %}
                              2. +
                              3. {% trans %}Find the entity that you want to moderate in either the content moderation view page, if you created one, or the appropriate administrative page for managing that type of entity (such as the {{ content_link}} administration page for content items).{% endtrans %}
                              4. {% trans %}Click Edit to edit the entity.{% endtrans %}
                              5. {% trans %}At the bottom of the page, select the new workflow state under Change to: and click Save.{% endtrans %}
                              diff --git a/core/modules/help_topics/help_topics/content_moderation.configuring_workflows.html.twig b/core/modules/help_topics/help_topics/content_moderation.configuring_workflows.html.twig index 9fd96bd4f5..d269bb6a9c 100644 --- a/core/modules/help_topics/help_topics/content_moderation.configuring_workflows.html.twig +++ b/core/modules/help_topics/help_topics/content_moderation.configuring_workflows.html.twig @@ -10,13 +10,16 @@ related: {% set user_topic = render_var(url('help.help_topic', {'id': 'user.overview'})) %} {% set permissions_topic = render_var(url('help.help_topic', {'id': 'user.permissions'})) %} {% set workflows_overview = render_var(url('help.help_topic', {'id': 'workflows.overview'})) %} -{% set content_moderation_permissions = render_var(help_route_link('user.admin_permissions', {}, {'fragment': 'module-content_moderation'})) %} -{% set workflows_permissions = render_var(help_route_link('user.admin_permissions', {}, {'fragment': 'module-workflows'})) %} -{% set workflows_url = render_var(help_route_link('entity.workflow.collection')) %} +{% set content_moderation_permissions_link_text %}{% trans %}Content Moderation{% endtrans %}{% endset %} +{% set content_moderation_permissions_link = render_var(help_route_link(content_moderation_permissions_link_text, 'user.admin_permissions', {}, {'fragment': 'module-content_moderation'})) %} +{% set workflows_permissions_link_text %}{% trans %}Administer workflows{% endtrans %}{% endset %} +{% set workflows_permissions_link = render_var(help_route_link(workflows_permissions_link_text, 'user.admin_permissions', {}, {'fragment': 'module-workflows'})) %} +{% set workflows_link_text %}{% trans %}Workflows{% endtrans %}{% endset %} +{% set workflows_link = render_var(help_route_link(workflows_link_text, 'entity.workflow.collection')) %}

                              {% trans %}Goal{% endtrans %}

                              {% trans %}Create or edit a workflow with various workflow states (for example Concept, Archived, etc.) for moderating content. See Content moderation workflows for more information on workflows.{% endtrans %}

                              {% trans %}Who can configure a workflow?{% endtrans %}

                              -

                              {% trans %}Users with the Administer workflows permission (typically administrators) can configure workflows.{% endtrans %}

                              +

                              {% trans %}Users with the {{ workflows_permissions_link }} permission (typically administrators) can configure workflows.{% endtrans %}

                              {% trans %}Steps{% endtrans %}

                              1. {% trans %}Make a plan for the new workflow:{% endtrans %} @@ -35,7 +38,7 @@ related:
                              2. {% trans %}Decide which entity types and subtypes the workflow should apply to. Only entity types that support revisions are possible to define workflows for.{% endtrans %}
                              3. -
                              4. {% trans %}To implement your plan, in the Manage administrative menu, navigate to Configuration > Workflow > Workflows. A list of workflows is shown, including the default workflow Editorial that you can adapt.{% endtrans %}
                              5. +
                              6. {% trans %}To implement your plan, in the Manage administrative menu, navigate to Configuration > Workflow > {{ workflows_link }}. A list of workflows is shown, including the default workflow Editorial that you can adapt.{% endtrans %}
                              7. {% trans %}Click Add workflow.{% endtrans %}
                              8. {% trans %}Enter a name in the Label field, select Content moderation from the Workflow type field, and click Save.{% endtrans %}
                              9. {% trans %}Verify that the States list matches your planned states. You can add missing states by clicking Add a new state. You can edit or delete states by clicking Edit or Delete under Operations (if the Delete option is not available, you will first need to delete any Transitions to or from this state).{% endtrans %}
                              10. @@ -45,6 +48,6 @@ related:
                              11. {% trans %}Click Save.{% endtrans %}
                              12. {% trans %}Under Workflow settings, select the Default moderation state for new content.{% endtrans %}
                              13. {% trans %}Click Save to save your workflow.{% endtrans %}
                              14. -
                              15. {% trans %}Follow the steps in Modifying the permissions for a role to assign permissions for each transition to roles. The permissions are listed under the Content Moderation section; there is one permission for each transition in each workflow.{% endtrans %}
                              16. +
                              17. {% trans %}Follow the steps in Modifying the permissions for a role to assign permissions for each transition to roles. The permissions are listed under the {{ content_moderation_permissions_link }} section; there is one permission for each transition in each workflow.{% endtrans %}
                              18. {% trans %}Optionally (recommended), create a view for your custom workflow, to provide a page for content editors to see what content needs to be moderated. You can do this if the Views UI module is installed, by following the steps in the related Creating a new view topic listed below under Related topics. When creating the view, under View settings > Show, select the revision data type you configured the workflow for, and be sure to display the Workflow State field in your view.{% endtrans %}
                              diff --git a/core/modules/help_topics/help_topics/content_translation.overview.html.twig b/core/modules/help_topics/help_topics/content_translation.overview.html.twig index c02e9681c1..5369e0ff41 100644 --- a/core/modules/help_topics/help_topics/content_translation.overview.html.twig +++ b/core/modules/help_topics/help_topics/content_translation.overview.html.twig @@ -4,13 +4,14 @@ related: - core.translations - language.add --- -{% set translation_settings = render_var(help_route_link('language.content_settings_page')) %} +{% set translation_settings_link_text %}{% trans %}Content language and translation{% endtrans %}{% endset %} +{% set translation_settings_link = render_var(help_route_link(translation_settings_link_text, 'language.content_settings_page')) %} {% set entity_overview = render_var(url('help.help_topic', {'id': 'core.content_structure'})) %}

                              {% trans %}Goal{% endtrans %}

                              {% trans %}Configure language and translation settings for one or more content entity types (see Managing content structure for an overview of content entities). To do this, you must have at least two languages configured. Afterwards, you will have a Translate operation available for your content entities, either as a tab or link when you are viewing or editing content, or on content administration pages.{% endtrans %}

                              {% trans %}Steps{% endtrans %}

                                -
                              1. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > Content language and translation.{% endtrans %}
                              2. +
                              3. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > {{ translation_settings_link }}.{% endtrans %}
                              4. {% trans %}Under Custom language settings, find the content entity types that should have customized language settings on your site. Check the box next to each one. A section will appear below the list with settings for that entity type.{% endtrans %}
                              5. {% trans %}For each entity type you checked, in the settings section below check the boxes for each entity sub-type that should be Translatable on your site. If the entity type does not have sub-types, there is just one check box for the entity type as a whole.{% endtrans %}
                              6. {% trans %}For each entity type or subtype, select the Default language. Also, if you want to have languages other than the default available when you create content, check Show language selector on create and edit pages.{% endtrans %}
                              7. 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 a856162b09..09399f72b9 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 @@ -2,7 +2,8 @@ label: 'Managing content structure' top_level: true --- -{% set help_url = render_var(help_route_link('help.main')) %} +{% set help_link_text %}{% trans %}Help page{% endtrans %}{% endset %} +{% set help_link = render_var(help_route_link(help_link_text, 'help.main')) %}

                                {% trans %}What types of data does a site have?{% endtrans %}

                                {% trans %}There are four main types of data. Content is the information (text, images, etc.) meant to be displayed to website visitors. Configuration is data that defines how the content is displayed; some configuration (such as field labels) may also be visible to site visitors. State is temporary data about the state of your site, such as the last time the system cron jobs ran. Session is a subset of State information, related to users' interactions with the site, such as site cookies and whether or not they are logged in.{% endtrans %}

                                {% trans %}What is a content entity?{% endtrans %}

                                @@ -41,7 +42,7 @@ top_level: true
                              8. {% trans %}The core Layout Builder module provides a more flexible user interface for configuring the display of entities.{% endtrans %}
                              9. {% trans %}The core Filter, RDF, Responsive Image, and Path modules provide settings and display options for entities and fields.{% endtrans %}
                              10. -

                                {% trans %}Depending on the core and contributed modules that you currently have installed on your site, the related topics below, and other topics listed on the main Help page, will help you with tasks related to content structure.{% endtrans %}

                                +

                                {% trans %}Depending on the core and contributed modules that you currently have installed on your site, the related topics below, and other topics listed on the main {{ help_link }}, will help you with tasks related to content structure.{% endtrans %}

                                {% trans %}Additional resources{% endtrans %}

                                • {% trans %}Concept: Types of Data topic in the User Guide{% endtrans %}
                                • diff --git a/core/modules/help_topics/help_topics/core.cron.html.twig b/core/modules/help_topics/help_topics/core.cron.html.twig index b8b240ede5..1c310e51a1 100644 --- a/core/modules/help_topics/help_topics/core.cron.html.twig +++ b/core/modules/help_topics/help_topics/core.cron.html.twig @@ -3,7 +3,8 @@ label: 'Running and configuring cron' related: - core.maintenance --- -{% set cron = render_var(help_route_link('system.cron_settings')) %} +{% set cron_link_text %}{% trans %}Cron{% endtrans %}{% endset %} +{% set cron_link = render_var(help_route_link(cron_link_text, 'system.cron_settings')) %}

                                  {% trans %}Goal{% endtrans %}

                                  {% trans %}Configure your system so that cron will run automatically.{% endtrans %}

                                  {% trans %}What are cron tasks?{% endtrans %}

                                  @@ -16,7 +17,7 @@ related:

                                {% trans %}Steps{% endtrans %}

                                  -
                                1. {% trans %}In the Manage administration menu, navigate to Configuration > System > Cron. Note the Last run time on the page.{% endtrans %}
                                2. +
                                3. {% trans %}In the Manage administration menu, navigate to Configuration > System > {{ cron_link }}. Note the Last run time on the page.{% endtrans %}
                                4. {% trans %}If you want to run cron right now, click Run cron and wait for cron to finish.{% endtrans %}
                                5. {% trans %}If you have a way to configure tasks on your web server, copy the link where it says To run cron from outside the site, go to. Set up a task to visit that URL on your desired cron schedule, such as once an hour or once a week. (On Linux-like servers, you can use the wget command to visit a URL.) If you configure an outside task, you should uninstall the Automated Cron module.{% endtrans %}
                                6. {% trans %}If you are not configuring an outside task, and you have the core Automated Cron module installed, select a schedule for automated cron runs in Cron settings > Run cron every. Click Save configuration.{% endtrans %}
                                7. 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 007d6a9ac3..90dd362914 100644 --- a/core/modules/help_topics/help_topics/editor.overview.html.twig +++ b/core/modules/help_topics/help_topics/editor.overview.html.twig @@ -6,14 +6,15 @@ related: - filter.overview --- {% set filters = render_var(url('help.help_topic', {'id': 'filter.overview'})) %} -{% set content_url = render_var(help_route_link('filter.admin_overview')) %} +{% set overview_link_text %}{% trans %}Text formats and editors{% endtrans %}{% endset %} +{% set overview_link = render_var(help_route_link(overview_link_text, 'filter.admin_overview')) %}

                                  {% trans %}Goal{% endtrans %}

                                  {% trans %}Configure a text format so that when a user is editing text and selects this text format, a text editor installed on your site is shown. Configure the text editor, such as choosing which buttons and functions are available. See Managing text filters and text formats for more about text formats.{% endtrans %}

                                  {% trans %}What is a text editor?{% endtrans %}

                                  {% trans %}A text editor is software (typically, a JavaScript library) that provides buttons and other command mechanisms to make editing HTML text easier. Some editors are called visual or WYSIWYG (What You See Is What You Get) editors; these editors hide the details of HTML from the user, and instead show formatted output on the screen. The core Text Editor module provides a framework for deploying text editors on your site. The core CKEditor module provides CKEditor, which is a widely-used JavaScript WYSIWYG editor that creates clean and valid HTML; the module also enforces the HTML tag restrictions in the associated text format. Various contributed modules provide other editors; to install a new editor, besides installing the module, you may need to download the editor library from a third-party site.{% endtrans %}

                                  {% trans %}Steps{% endtrans %}

                                    -
                                  1. {% trans %}In the Manage administrative menu, navigate to Configuration > Content Authoring > Text formats and editors. The Text editor column in the table shows the text editor that is currently connected to each text format, if any.{% endtrans %}
                                  2. +
                                  3. {% trans %}In the Manage administrative menu, navigate to Configuration > Content Authoring > {{ overview_link }}. The Text editor column in the table shows the text editor that is currently connected to each text format, if any.{% endtrans %}
                                  4. {% trans %}Follow the steps on Managing text filters and text formats to add a new text format or configure an existing text format; when you reach the step about text editors, return to this topic.{% endtrans %}
                                  5. {% 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 %}
                                  6. {% 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 %}
                                  7. diff --git a/core/modules/help_topics/help_topics/field_ui.add_field.html.twig b/core/modules/help_topics/help_topics/field_ui.add_field.html.twig index e2bedebeaf..177d871fbf 100644 --- a/core/modules/help_topics/help_topics/field_ui.add_field.html.twig +++ b/core/modules/help_topics/help_topics/field_ui.add_field.html.twig @@ -5,13 +5,14 @@ related: - field_ui.manage_display - field_ui.manage_form --- -{% set content_types = render_var(help_route_link('entity.node_type.collection')) %} +{% set content_types_link_text %}{% trans %}Content types{% endtrans %}{% endset %} +{% set content_types_link = render_var(help_route_link(content_types_link_text, 'entity.node_type.collection')) %} {% set content_structure = render_var(url('help.help_topic', {'id': 'core.content_structure'})) %}

                                    {% trans %}Goal{% endtrans %}

                                    {% trans %}Add a field to an entity sub-type; see Managing content structure for an overview of entity types and sub-types, as well as an overview of field types.{% endtrans %}

                                    {% trans %}Steps{% endtrans %}

                                      -
                                    1. {% trans %}Navigate to the page for managing the entity sub-type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > Content types.{% endtrans %}
                                    2. +
                                    3. {% trans %}Navigate to the page for managing the entity sub-type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > {{ content_types_link }}.{% endtrans %}
                                    4. {% trans %}Find the particular sub-type that you want to add the field to, and click Manage fields.{% endtrans %}
                                    5. {% trans %}Click Add field.{% endtrans %}
                                    6. {% trans %}In Add a new field, select the type of field you want to add; see Managing content structure for an overview of field types.{% endtrans %}
                                    7. diff --git a/core/modules/help_topics/help_topics/field_ui.manage_display.html.twig b/core/modules/help_topics/help_topics/field_ui.manage_display.html.twig index eca192e55d..a061e0ed78 100644 --- a/core/modules/help_topics/help_topics/field_ui.manage_display.html.twig +++ b/core/modules/help_topics/help_topics/field_ui.manage_display.html.twig @@ -6,13 +6,14 @@ related: - field_ui.manage_form - core.ui_accessibility --- -{% set content_types = render_var(help_route_link('entity.node_type.collection')) %} +{% set content_types_link_text %}{% trans %}Content types{% endtrans %}{% endset %} +{% set content_types_link = render_var(help_route_link(content_types_link_text, 'entity.node_type.collection')) %} {% set content_structure = render_var(url('help.help_topic', {'id': 'core.content_structure'})) %}

                                      {% trans %}Goal{% endtrans %}

                                      {% trans %}Configure the formatters used to display the fields of an entity sub-type, their order in the display, and the formatter settings. See Managing content structure for background information.{% endtrans %}

                                      {% trans %}Steps{% endtrans %}

                                        -
                                      1. {% trans %}Navigate to the page for managing the entity type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > Content types.{% endtrans %}
                                      2. +
                                      3. {% trans %}Navigate to the page for managing the entity type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > {{ content_types_link }}.{% endtrans %}
                                      4. {% trans %}Find the particular sub-type that you want to configure the display of, and click Manage display in the Operations list.{% endtrans %}
                                      5. {% trans %}Use the drag arrows to order the fields in your preferred order.{% endtrans %}
                                      6. {% trans %}Drag any fields that you do not wish to see in the display to the Disabled section.{% endtrans %}
                                      7. diff --git a/core/modules/help_topics/help_topics/field_ui.manage_form.html.twig b/core/modules/help_topics/help_topics/field_ui.manage_form.html.twig index 73ec1b8b8a..2f07419767 100644 --- a/core/modules/help_topics/help_topics/field_ui.manage_form.html.twig +++ b/core/modules/help_topics/help_topics/field_ui.manage_form.html.twig @@ -6,13 +6,14 @@ related: - field_ui.manage_display - core.ui_accessibility --- -{% set content_types = render_var(help_route_link('entity.node_type.collection')) %} +{% set content_types_link_text %}{% trans %}Content types{% endtrans %}{% endset %} +{% set content_types_link = render_var(help_route_link(content_types_link_text, 'entity.node_type.collection')) %} {% set content_structure = render_var(url('help.help_topic', {'id': 'core.content_structure'})) %}

                                        {% trans %}Goal{% endtrans %}

                                        {% trans %}Configure the widgets used to edit the fields of an entity sub-type, their order on the form, and the widget settings. See Managing content structure for background information.{% endtrans %}

                                        {% trans %}Steps{% endtrans %}

                                          -
                                        1. {% trans %}Navigate to the page for managing the entity type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > Content types.{% endtrans %}
                                        2. +
                                        3. {% trans %}Navigate to the page for managing the entity type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > {{ content_types_link }}.{% endtrans %}
                                        4. {% trans %}Find the particular sub-type that you want to configure the editing form for, and click Manage form display in the Operations list.{% endtrans %}
                                        5. {% trans %}Use the drag arrows to order the fields in your preferred order.{% endtrans %}
                                        6. {% trans %}Drag any fields that you do not wish to see on the editing form to the Disabled section.{% endtrans %}
                                        7. diff --git a/core/modules/help_topics/help_topics/field_ui.reference_field.html.twig b/core/modules/help_topics/help_topics/field_ui.reference_field.html.twig index 7df53438f8..3c88ced0bf 100644 --- a/core/modules/help_topics/help_topics/field_ui.reference_field.html.twig +++ b/core/modules/help_topics/help_topics/field_ui.reference_field.html.twig @@ -7,12 +7,13 @@ related: - field_ui.manage_form --- {% set content_structure = render_var(url('help.help_topic', {'id': 'core.content_structure'})) %} -{% set content_types = render_var(help_route_link('entity.node_type.collection')) %} +{% set content_types_link_text %}{% trans %}Content types{% endtrans %}{% endset %} +{% set content_types_link = render_var(help_route_link(content_types_link_text, 'entity.node_type.collection')) %}

                                          {% trans %}Goal{% endtrans %}

                                          {% trans %}Add an entity reference field to an entity sub-type; see Managing content structure for more information on entities and reference fields.{% endtrans %}

                                          {% trans %}Steps{% endtrans %}

                                            -
                                          1. {% trans %}Navigate to the page for managing the entity sub-type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > Content types.{% endtrans %}
                                          2. +
                                          3. {% trans %}Navigate to the page for managing the entity sub-type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > {{ content_types_link }}.{% endtrans %}
                                          4. {% trans %}Find the particular sub-type that you want to add the field to, and click Manage fields.{% endtrans %}
                                          5. {% trans %}Click Add field.{% endtrans %}
                                          6. {% trans %}In Add a new field, select the type of reference field you want to add. The Reference section of the select list shows the most common types of reference field; choose Other... if the entity type you want to reference is not listed.{% endtrans %}
                                          7. 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 f8ed1853e7..b796156df7 100644 --- a/core/modules/help_topics/help_topics/filter.overview.html.twig +++ b/core/modules/help_topics/help_topics/filter.overview.html.twig @@ -7,7 +7,8 @@ related: - field_ui.manage_display - field_ui.add_field --- -{% set content_url = render_var(help_route_link('filter.admin_overview')) %} +{% set overview_link_text %}{% trans %}Text formats and editors{% endtrans %}{% endset %} +{% set overview_link = render_var(help_route_link(overview_link_text, 'filter.admin_overview')) %}

                                            {% trans %}Goal{% endtrans %}

                                            {% trans %}Configure text formats on the site.{% endtrans %}

                                            {% trans %}What are text filters and text formats?{% endtrans %}

                                            @@ -27,7 +28,7 @@ related:

                                            {% trans %}Steps{% endtrans %}

                                              -
                                            1. {% 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 %}
                                            2. +
                                            3. {% trans %}In the Manage administrative menu, navigate to Configuration > Content Authoring > {{ overview_link }}. If you do not have the core Text Editor module installed, the menu link and page title will instead be Text formats.{% endtrans %}
                                            4. {% trans %}Click Configure to configure an existing text format, or + Add text format to create a new text format.{% endtrans %}
                                            5. {% trans %}Enter the desired Name for the text format.{% endtrans %}
                                            6. {% 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 %}
                                            7. diff --git a/core/modules/help_topics/help_topics/forum.configuring.html.twig b/core/modules/help_topics/help_topics/forum.configuring.html.twig index 9c8a41d9aa..72419d7a28 100644 --- a/core/modules/help_topics/help_topics/forum.configuring.html.twig +++ b/core/modules/help_topics/help_topics/forum.configuring.html.twig @@ -3,21 +3,24 @@ label: 'Configuring forums' related: - forum.concept --- -{% set settings = render_var(help_route_link('forum.settings')) %} -{% set overview = render_var(help_route_link('forum.overview')) %} +{% set settings_link_text %}{% trans %}Settings{% endtrans %}{% endset %} +{% set settings_link = render_var(help_route_link(settings_link_text, 'forum.settings')) %} +{% set overview_link_text %}{% trans %}Forums{% endtrans %}{% endset %} +{% set overview_link = render_var(help_route_link(overview_link_text, 'forum.overview')) %} {% set concept = render_var(url('help.help_topic', {'id': 'forum.concept'})) %} -{% set index = render_var(help_route_link('forum.index')) %} +{% set index_link_text %}{% trans %}Forums{% endtrans %}{% endset %} +{% set index_link = render_var(help_route_link(index_link_text, 'forum.index')) %}

                                              {% trans %}Goal{% endtrans %}

                                              {% trans %}Configure settings for forums, and set up forum structure.{% endtrans %}

                                              {% trans %}Steps{% endtrans %}

                                                -
                                              1. {% trans %}In the Manage administrative menu, navigate to Structure > Forums > Settings.{% endtrans %}
                                              2. +
                                              3. {% trans %}In the Manage administrative menu, navigate to Structure > Forums > {{ settings_link }}.{% endtrans %}
                                              4. {% trans %}Choose the desired settings for Hot topic threshold, Topics per page, and Default order. Click Save configuration if you have made any changes.{% endtrans %}
                                              5. -
                                              6. {% trans %}In the Manage administrative menu, navigate to Structure > Forums.{% endtrans %}
                                              7. +
                                              8. {% trans %}In the Manage administrative menu, navigate to Structure > {{ overview_link }}.{% endtrans %}
                                              9. {% trans %}Decide on the hierarchy of containers and forums you want for your site; see Creating threaded discussion forums for an overview of forum hierarchy.{% endtrans %}
                                              10. {% trans %}Create the containers that you want in your forum hierarchy, starting at the top level, if any. To create a container, click Add container, enter the container name and optionally other settings, and click Save.{% endtrans %}
                                              11. {% trans %}Create the forums that you want in your forum hierarchy, starting at the top level. To create a forum, click Add forum and enter the forum name. If your hierarchy has this forum inside a container or another forum, select the parent forum/container in the Parent field. Review and/or edit the other settings, and click Save.{% endtrans %}
                                              12. {% trans %}Optionally, delete the provided General discussion forum, if you do not want this forum to be available on your site.{% endtrans %}
                                              13. {% trans %}Review and/or edit the permissions related to forums. The administrative permission for editing the forum settings is in the Forum module section of the permissions page, and administrative permissions for editing the forum hierarchy are in the Taxonomy module section. The user permissions for creating forum topics are in the Node module section, and for commenting on topics are in the Comment module section.{% endtrans %}
                                              14. -
                                              15. {% trans %}Add links to the main Forums page (path: /forum), and optionally to individual forum pages, to navigation menus on your site, so that users can find the forums.{% endtrans %}
                                              16. +
                                              17. {% trans %}Add links to the main {{ index_link }} page (path: /forum), and optionally to individual forum pages, to navigation menus on your site, so that users can find the forums.{% endtrans %}
                                              diff --git a/core/modules/help_topics/help_topics/forum.locking.html.twig b/core/modules/help_topics/help_topics/forum.locking.html.twig index 1318f3b2cc..f295ce6602 100644 --- a/core/modules/help_topics/help_topics/forum.locking.html.twig +++ b/core/modules/help_topics/help_topics/forum.locking.html.twig @@ -3,12 +3,13 @@ label: 'Locking a forum topic' related: - forum.concept --- -{% set index = render_var(help_route_link('forum.index')) %} +{% set index_link_text %}{% trans %}forums page{% endtrans %}{% endset %} +{% set index_link = render_var(help_route_link(index_link_text, 'forum.index')) %}

                                              {% trans %}Goal{% endtrans %}

                                              {% trans %}Lock a topic to prevent users from making any more comments.{% endtrans %}

                                              {% trans %}Steps{% endtrans %}

                                                -
                                              1. {% trans %}Starting from the forums page, navigate to the forum that currently contains the topic.{% endtrans %}
                                              2. +
                                              3. {% trans %}Starting from the {{ index_link }}, navigate to the forum that currently contains the topic.{% endtrans %}
                                              4. {% trans %}Locate the topic within the forum, and click on the title to view the topic.{% endtrans %}
                                              5. {% trans %}Click Edit.{% endtrans %}
                                              6. {% trans %}Under Comment settings, check Closed.{% endtrans %}
                                              7. diff --git a/core/modules/help_topics/help_topics/forum.moving.html.twig b/core/modules/help_topics/help_topics/forum.moving.html.twig index aeae9f71fb..82cd7e0a5d 100644 --- a/core/modules/help_topics/help_topics/forum.moving.html.twig +++ b/core/modules/help_topics/help_topics/forum.moving.html.twig @@ -3,12 +3,13 @@ label: 'Moving a topic to a new forum' related: - forum.concept --- -{% set index = render_var(help_route_link('forum.index')) %} +{% set index_link_text %}{% trans %}forums page{% endtrans %}{% endset %} +{% set index_link = render_var(help_route_link(index_link_text, 'forum.index')) %}

                                                {% trans %}Goal{% endtrans %}

                                                {% trans %}Move a forum topic and all of its comments to a new forum. {% endtrans %}

                                                {% trans %}Steps{% endtrans %}

                                                  -
                                                1. {% trans %}Starting from the forums page, navigate to the forum that currently contains the topic.{% endtrans %}
                                                2. +
                                                3. {% trans %}Starting from the {{ index_link }}, navigate to the forum that currently contains the topic.{% endtrans %}
                                                4. {% trans %}Locate the topic within the forum, and click on the title to view the topic.{% endtrans %}
                                                5. {% trans %}Click Edit.{% endtrans %}
                                                6. {% trans %}In the Forums field, select the new forum that you want the topic to move to.{% endtrans %}
                                                7. diff --git a/core/modules/help_topics/help_topics/forum.starting.html.twig b/core/modules/help_topics/help_topics/forum.starting.html.twig index d784ddacb0..58d238e099 100644 --- a/core/modules/help_topics/help_topics/forum.starting.html.twig +++ b/core/modules/help_topics/help_topics/forum.starting.html.twig @@ -3,12 +3,13 @@ label: 'Starting a forum discussion' related: - forum.concept --- -{% set index = render_var(help_route_link('forum.index')) %} +{% set index_link_text %}{% trans %}forums page{% endtrans %}{% endset %} +{% set index_link = render_var(help_route_link(index_link_text, 'forum.index')) %}

                                                  {% trans %}Goal{% endtrans %}

                                                  {% trans %}Post a new topic in a forum to start a discussion.{% endtrans %}

                                                  {% trans %}Steps{% endtrans %}

                                                    -
                                                  1. {% trans %}Starting from the forums page, navigate to the forum where you want to post the topic.{% endtrans %}
                                                  2. +
                                                  3. {% trans %}Starting from the {{ index_link }}, navigate to the forum where you want to post the topic.{% endtrans %}
                                                  4. {% trans %}Click Add new Forum topic.{% endtrans %}
                                                  5. {% trans %}Enter the topic's Subject and Body.{% endtrans %}
                                                  6. {% trans %}Click Save.{% endtrans %}
                                                  7. diff --git a/core/modules/help_topics/help_topics/help.help_topic_search.html.twig b/core/modules/help_topics/help_topics/help.help_topic_search.html.twig index ceca96a0b2..51ca71ba47 100644 --- a/core/modules/help_topics/help_topics/help.help_topic_search.html.twig +++ b/core/modules/help_topics/help_topics/help.help_topic_search.html.twig @@ -6,20 +6,22 @@ related: - core.cron - search.overview --- -{% set extend_url = render_var(help_route_link('system.modules_list')) %} -{% set help_url = render_var(help_route_link('help.main')) %} +{% set extend_link_text %}{% trans %}Extend{% endtrans %}{% endset %} +{% set extend_link = render_var(help_route_link(extend_link_text, 'system.modules_list')) %} +{% set help_link_text %}{% trans %}Help{% endtrans %}{% endset %} +{% set help_link = render_var(help_route_link(help_link_text, 'help.main')) %} {% set cache_help = render_var(url('help.help_topic', {'id': 'system.cache'})) %} {% set cron_help = render_var(url('help.help_topic', {'id': 'core.cron'})) %}

                                                    {% trans %}Goal{% endtrans %}

                                                    {% trans %}Set up your site so that users can search for help.{% endtrans %}

                                                    {% trans %}Steps{% endtrans %}

                                                      -
                                                    1. {% trans %}In the Manage administrative menu, navigate to Extend. Verify that the Search, Help, Help Topics, and Block modules are installed (or install them if they are not already installed).{% endtrans %}
                                                    2. +
                                                    3. {% trans %}In the Manage administrative menu, navigate to {{ extend_link }}. Verify that the Search, Help, Help Topics, and Block modules are installed (or install them if they are not already installed).{% endtrans %}
                                                    4. {% trans %}In the Manage administrative menu, navigate to Configuration > Search and metadata > Search pages.{% endtrans %}
                                                    5. {% trans %}Verify that a Help search page is listed in the Search pages section. If not, add a new page of type Help.{% endtrans %}
                                                    6. {% trans %}Check the indexing status of the Help search page. If it is not fully indexed, run Cron until indexing is complete.{% endtrans %}
                                                    7. {% trans %}In the future, you can click Rebuild search index on this page, or clear the site cache, in order to force help topic text to be reindexed for searching. This should be done whenever a module, theme, language, or string translation is updated.{% endtrans %}
                                                    8. {% trans %}In the Manage administrative menu, navigate to Structure > Block layout.{% endtrans %}
                                                    9. {% trans %}Click the link for your administrative theme (such as the core Seven theme), near the top of the page, and verify that there is already a search block for help located in the Help region. If not, follow the steps in the related topic to place the Search form block in the Help region. When configuring the block, choose Help as the search page, and in the Pages tab under Visibility, enter /admin/help to make the search form only visible on the main Help page.{% endtrans %}
                                                    10. -
                                                    11. {% trans %}In the Manage administrative menu, navigate to Help. Verify that the search block is visible, and try a search.{% endtrans %}
                                                    12. +
                                                    13. {% trans %}In the Manage administrative menu, navigate to {{ help_link }}. Verify that the search block is visible, and try a search.{% endtrans %}
                                                    diff --git a/core/modules/help_topics/help_topics/image.style.html.twig b/core/modules/help_topics/help_topics/image.style.html.twig index 09d288d57b..4b1e207528 100644 --- a/core/modules/help_topics/help_topics/image.style.html.twig +++ b/core/modules/help_topics/help_topics/image.style.html.twig @@ -6,12 +6,13 @@ related: - layout_builder.overview --- {% set overview = render_var(url('help.help_topic', {'id': 'core.media'})) %} -{% set styles = render_var(help_route_link('entity.image_style.collection')) %} +{% set styles_link_text %}{% trans %}Image styles{% endtrans %}{% endset %} +{% set styles_link = render_var(help_route_link(styles_link_text, 'entity.image_style.collection')) %}

                                                    {% trans %}Goal{% endtrans %}

                                                    {% trans %}Add a new image style, which can be used to process and display images. See Managing media for an overview of image styles.{% endtrans %}

                                                    {% trans %}Steps{% endtrans %}

                                                      -
                                                    1. {% trans %}In the Manage administrative menu, navigate to Configuration > Media > Image styles.{% endtrans %}
                                                    2. +
                                                    3. {% trans %}In the Manage administrative menu, navigate to Configuration > Media > {{ styles_link }}.{% endtrans %}
                                                    4. {% trans %}Click Add image style.{% endtrans %}
                                                    5. {% trans %}Enter a descriptive Image style name, and click Create new style.{% endtrans %}
                                                    6. {% trans %}Under Effect, choose an effect to apply and click Add.{% endtrans %}
                                                    7. diff --git a/core/modules/help_topics/help_topics/language.add.html.twig b/core/modules/help_topics/help_topics/language.add.html.twig index 8ad3545b96..4f24e02b44 100644 --- a/core/modules/help_topics/help_topics/language.add.html.twig +++ b/core/modules/help_topics/help_topics/language.add.html.twig @@ -4,12 +4,13 @@ related: - core.translations - language.detect --- -{% set languages_url = render_var(help_route_link('entity.configurable_language.collection')) %} +{% set languages_link_text %}{% trans %}Languages{% endtrans %}{% endset %} +{% set languages_link = render_var(help_route_link(languages_link_text, 'entity.configurable_language.collection')) %}

                                                      {% trans %}Goal{% endtrans %}

                                                      {% trans %}Add a language to your site.{% endtrans %}

                                                      {% trans %}Steps{% endtrans %}

                                                        -
                                                      1. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > Languages.{% endtrans %}
                                                      2. +
                                                      3. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > {{ languages_link }}.{% endtrans %}
                                                      4. {% trans %}Click Add language.{% endtrans %}
                                                      5. {% trans %}If your language is in the Language name list, select it and click Add language.{% endtrans %}
                                                      6. {% trans %}If your language is not in the list, select Custom language... and enter the Language code, Language name, and Direction for the language. Click Add custom language.{% endtrans %}
                                                      7. diff --git a/core/modules/help_topics/help_topics/language.detect.html.twig b/core/modules/help_topics/help_topics/language.detect.html.twig index 3185a05fae..c2a6af4013 100644 --- a/core/modules/help_topics/help_topics/language.detect.html.twig +++ b/core/modules/help_topics/help_topics/language.detect.html.twig @@ -4,7 +4,8 @@ related: - core.translations - language.add --- -{% set detection = render_var(help_route_link('language.negotiation')) %} +{% set detection_link_text %}{% trans %}Detection and selection{% endtrans %}{% endset %} +{% set detection_link = render_var(help_route_link(detection_link_text, 'language.negotiation')) %}

                                                        {% trans %}Goal{% endtrans %}

                                                        {% trans %}Configure the methods used to decide which language will be used to display text on your site.{% endtrans %}

                                                        {% trans %}What is a language detection method?{% endtrans %}

                                                        @@ -25,7 +26,7 @@ related:

                                                        {% trans %}Steps{% endtrans %}

                                                          -
                                                        1. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > Languages > Detection and selection.{% endtrans %}
                                                        2. +
                                                        3. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > Languages > {{ detection_link }}.{% endtrans %}
                                                        4. {% trans %}Check the boxes to enable the desired language detection methods, and uncheck boxes for the methods you do not want to use.{% endtrans %}
                                                        5. {% trans %}Drag the methods to change their order, if desired.{% endtrans %}
                                                        6. {% trans %}Click Save settings.{% endtrans %}
                                                        7. diff --git a/core/modules/help_topics/help_topics/layout_builder.overview.html.twig b/core/modules/help_topics/help_topics/layout_builder.overview.html.twig index 7652e5965c..592a337cf3 100644 --- a/core/modules/help_topics/help_topics/layout_builder.overview.html.twig +++ b/core/modules/help_topics/help_topics/layout_builder.overview.html.twig @@ -6,7 +6,8 @@ related: - field_ui.manage_display - block.overview --- -{% set content_types = render_var(help_route_link('entity.node_type.collection')) %} +{% set content_types_link_text %}{% trans %}Content types{% endtrans %}{% endset %} +{% set content_types_link = render_var(help_route_link(content_types_link_text, 'entity.node_type.collection')) %} {% set entities = render_var(url('help.help_topic', {'id': 'core.content_structure'})) %} {% set blocks = render_var(url('help.help_topic', {'id': 'block.overview'})) %}

                                                          {% trans %}Goal{% endtrans %}

                                                          @@ -15,7 +16,7 @@ related:

                                                          {% trans %}A layout consists of one or more sections. Each section can have from one to four columns. You can place blocks, including special blocks for the fields on the entity sub-type, in each column of each section (see Managing blocks for more on blocks).{% endtrans %}

                                                          {% trans %}Steps{% endtrans %}

                                                            -
                                                          1. {% trans %}Navigate to the page for managing the entity type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > Content types.{% endtrans %}
                                                          2. +
                                                          3. {% trans %}Navigate to the page for managing the entity type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > {{ content_types_link }}.{% endtrans %}
                                                          4. {% trans %}Find the particular sub-type that you want to create a layout for, and click Manage display in the Operations list.{% endtrans %}
                                                          5. {% trans %}Under Layout options, check Use Layout Builder. You can also check the box below to allow each entity item to have its layout individually customized (if it is left unchecked, the site will use the same layout for all items of this entity sub-type).{% endtrans %}
                                                          6. {% trans %}Click Save. You will be returned to the Manage display page, but you will no longer see the table of fields of the classic display manager.{% endtrans %}
                                                          7. diff --git a/core/modules/help_topics/help_topics/locale.import.html.twig b/core/modules/help_topics/help_topics/locale.import.html.twig index 2d34bead87..f337bb4a07 100644 --- a/core/modules/help_topics/help_topics/locale.import.html.twig +++ b/core/modules/help_topics/help_topics/locale.import.html.twig @@ -5,12 +5,13 @@ related: - locale.translation_status - locale.translate_strings --- -{% set import = render_var(help_route_link('locale.translate_import')) %} +{% set import_link_text %}{% trans %}Import{% endtrans %}{% endset %} +{% set import_link = render_var(help_route_link(import_link_text, 'locale.translate_import')) %}

                                                            {% trans %}Goal{% endtrans %}

                                                            {% trans %}Import a file (.po extension) containing translations for user interface text.{% endtrans %}

                                                            {% trans %}Steps{% endtrans %}

                                                              -
                                                            1. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > User interface translation > Import.{% endtrans %}
                                                            2. +
                                                            3. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > User interface translation > {{ import_link }}.{% endtrans %}
                                                            4. {% trans %}Browse to find the Translation file you want to import. Select the language and check the desired import options.{% endtrans %}
                                                            5. {% trans %}Click Import and wait for your file to be imported.{% endtrans %}
                                                            diff --git a/core/modules/help_topics/help_topics/locale.translate_strings.html.twig b/core/modules/help_topics/help_topics/locale.translate_strings.html.twig index 5df47f98f5..624b4d8fd6 100644 --- a/core/modules/help_topics/help_topics/locale.translate_strings.html.twig +++ b/core/modules/help_topics/help_topics/locale.translate_strings.html.twig @@ -6,12 +6,13 @@ related: - locale.translation_status - language.add --- -{% set translate = render_var(help_route_link('locale.translate_page')) %} +{% set translate_link_text %}{% trans %}User interface translation{% endtrans %}{% endset %} +{% set translate_link = render_var(help_route_link(translate_link_text, 'locale.translate_page')) %}

                                                            {% trans %}Goal{% endtrans %}

                                                            {% trans %}Translate user interface text strings from English into a non-English language that is configured on your site.{% endtrans %}

                                                            {% trans %}Steps{% endtrans %}

                                                              -
                                                            1. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > User interface translation.{% endtrans %}
                                                            2. +
                                                            3. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > {{ translate_link }}.{% endtrans %}
                                                            4. {% trans %}Using the filters, search for a string or set of strings that you want to translate; make sure to select the correct Translation language if you have more than one non-English language on your site.{% endtrans %}
                                                            5. {% trans %}Enter new translations and click Save translations.{% endtrans %}
                                                            6. {% trans %}Repeat these steps until all of the desired user interface text is translated for all languages on your site.{% endtrans %}
                                                            7. diff --git a/core/modules/help_topics/help_topics/locale.translation_status.html.twig b/core/modules/help_topics/help_topics/locale.translation_status.html.twig index 9defbe4ff4..fb404bdd03 100644 --- a/core/modules/help_topics/help_topics/locale.translation_status.html.twig +++ b/core/modules/help_topics/help_topics/locale.translation_status.html.twig @@ -5,15 +5,17 @@ related: - locale.import - locale.translate_strings --- -{% set language = render_var(help_route_link('entity.configurable_language.collection')) %} -{% set translation_updates = render_var(help_route_link('locale.translate_status')) %} +{% set language_link_text %}{% trans %}Languages{% endtrans %}{% endset %} +{% set language_link = render_var(help_route_link(language_link_text, 'entity.configurable_language.collection')) %} +{% set translation_updates_link_text %}{% trans %}Available translation updates{% endtrans %}{% endset %} +{% set translation_updates_link = render_var(help_route_link(translation_updates_link_text, 'locale.translate_status')) %}

                                                              {% trans %}Goal{% endtrans %}

                                                              {% trans %}Check the current status of interface translations, and see if there are any updates available.{% endtrans %}

                                                              {% trans %}Steps{% endtrans %}

                                                                -
                                                              1. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > Languages.{% endtrans %}
                                                              2. +
                                                              3. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > {{ language_link }}.{% endtrans %}
                                                              4. {% trans %}Look at the Interface translation column in the language table, to find the percentage of user interface text that has been translated for each language.{% endtrans %}
                                                              5. -
                                                              6. {% trans %}In the Manage administrative menu, navigate to Reports > Available translation updates. This report is only available if the core Update Status module is installed.{% endtrans %}
                                                              7. +
                                                              8. {% trans %}In the Manage administrative menu, navigate to Reports > {{ translation_updates_link }}. This report is only available if the core Update Status module is installed.{% endtrans %}
                                                              9. {% trans %}Optionally, click Check manually to update the report.{% endtrans %}
                                                              10. {% trans %}View the report to find out if any languages have translation updates that you can download.{% endtrans %}
                                                              diff --git a/core/modules/help_topics/help_topics/media.media_type.html.twig b/core/modules/help_topics/help_topics/media.media_type.html.twig index a751077d9e..bc5c820980 100644 --- a/core/modules/help_topics/help_topics/media.media_type.html.twig +++ b/core/modules/help_topics/help_topics/media.media_type.html.twig @@ -7,12 +7,13 @@ related: --- {% set structure = render_var(url('help.help_topic', {'id': 'core.content_structure'})) %} {% set overview = render_var(url('help.help_topic', {'id': 'core.media'})) %} -{% set media = render_var(help_route_link('entity.media_type.collection')) %} +{% set media_link_text %}{% trans %}Media types{% endtrans %}{% endset %} +{% set media_link = render_var(help_route_link(media_link_text, 'entity.media_type.collection')) %}

                                                              {% trans %}Goal{% endtrans %}

                                                              {% trans %}Add a new media type that can be referenced in Media reference fields; media types are a content entity type. See the Managing media topic for an overview of media items and media types, and the Managing content structure topic for more information on content entities and fields.{% endtrans %}

                                                              {% trans %}Steps{% endtrans %}

                                                                -
                                                              1. {% trans %}In the Manage administrative menu, navigate to Structure > Media types.{% endtrans %}
                                                              2. +
                                                              3. {% trans %}In the Manage administrative menu, navigate to Structure > {{ media_link }}.{% endtrans %}
                                                              4. {% trans %}If there is not already a media type for the type of media you want to use on your site, click Add media type.{% endtrans %}
                                                              5. {% trans %}Enter a Name and Description for your media type, and select the Media source.{% endtrans %}
                                                              6. {% trans %}For most media sources, there is additional information that will need to be stored with your media item, in a field on your media type. Under Media source configuration, select an existing field to re-use to store this information, or select - Create - to create a new field.{% endtrans %}
                                                              7. diff --git a/core/modules/help_topics/help_topics/menu_ui.content_type_configuration.html.twig b/core/modules/help_topics/help_topics/menu_ui.content_type_configuration.html.twig index cbe0f4b913..d378e2cc98 100644 --- a/core/modules/help_topics/help_topics/menu_ui.content_type_configuration.html.twig +++ b/core/modules/help_topics/help_topics/menu_ui.content_type_configuration.html.twig @@ -5,12 +5,13 @@ related: - menu_ui.menu_operations - core.menus --- -{% set content_types = render_var(help_route_link('entity.node_type.collection')) %} +{% set content_types_link_text %}{% trans %}Content types{% endtrans %}{% endset %} +{% set content_types_link = render_var(help_route_link(content_types_link_text, 'entity.node_type.collection')) %}

                                                                {% trans %}Goal{% endtrans %}

                                                                {% trans %}For an existing content type, configure the available menus that will be shown as options on content editing screens; links to content items of this type can be added to these menus during editing.{% endtrans %}

                                                                {% trans %}Steps{% endtrans %}

                                                                  -
                                                                1. {% trans %}In the Manage administrative menu, navigate to Structure > Content types.{% endtrans %}
                                                                2. +
                                                                3. {% trans %}In the Manage administrative menu, navigate to Structure > {{ content_types_link }}.{% endtrans %}
                                                                4. {% trans %}Locate the content type you want to configure, and click Edit in the Operations list.{% endtrans %}
                                                                5. {% trans %}Under Menu settings, check the menus that you want to be available when editing a content item of this type.{% endtrans %}
                                                                6. {% trans %}Optionally, select the Default parent item, to put links to content items under a default location in the menu structure.{% endtrans %}
                                                                7. diff --git a/core/modules/help_topics/help_topics/menu_ui.menu_item_add.html.twig b/core/modules/help_topics/help_topics/menu_ui.menu_item_add.html.twig index 150f4f7120..33229fe6ae 100644 --- a/core/modules/help_topics/help_topics/menu_ui.menu_item_add.html.twig +++ b/core/modules/help_topics/help_topics/menu_ui.menu_item_add.html.twig @@ -5,12 +5,13 @@ related: - menu_ui.menu_operations - core.menus --- -{% set structure_menu = render_var(help_route_link('entity.menu.collection')) %} +{% set structure_menu_link_text %}{% trans %}Menus{% endtrans %}{% endset %} +{% set structure_menu_link = render_var(help_route_link(structure_menu_link_text, 'entity.menu.collection')) %}

                                                                  {% trans %}Goal{% endtrans %}

                                                                  {% trans %}Add a link to a menu. Note that you can also add a link to a menu from the content edit page if menu settings have been configured for the content type.{% endtrans %}

                                                                  {% trans %}Steps{% endtrans %}

                                                                    -
                                                                  1. {% trans %}In the Manage administration menu, navigate to Structure > Menus.{% endtrans %}
                                                                  2. +
                                                                  3. {% trans %}In the Manage administration menu, navigate to Structure > {{ structure_menu_link }}.{% endtrans %}
                                                                  4. {% trans %}Locate the desired menu and click Add link in the Operations list.{% endtrans %}
                                                                  5. {% trans %}Enter the Menu link title to be displayed.{% endtrans %}
                                                                  6. {% trans %}Enter the Link, one of the following:{% endtrans %} @@ -27,7 +28,7 @@ related:
                                                                  7. {% trans %}Optionally, check Show as expanded to automatically show the children of this link (if any) when this link is shown.{% endtrans %}
                                                                  8. {% trans %}Optionally, select the Parent link, if this menu link should be a child of another menu link.{% endtrans %}
                                                                  9. {% trans %}Click Save. You will be returned to the Add link page to add another link.{% endtrans %}
                                                                  10. -
                                                                  11. {% trans %}In the Manage administration menu, navigate to Structure > Menus.{% endtrans %}
                                                                  12. +
                                                                  13. {% trans %}In the Manage administration menu, navigate to Structure > {{ structure_menu_link }}.{% endtrans %}
                                                                  14. {% trans %}Locate the menu you just added a link to and click Edit in the Operations list.{% endtrans %}
                                                                  15. {% trans %}Verify that the order of links is correct. If it is not, drag menu links until the order is correct, and click Save.{% endtrans %}
                                                                  diff --git a/core/modules/help_topics/help_topics/menu_ui.menu_operations.html.twig b/core/modules/help_topics/help_topics/menu_ui.menu_operations.html.twig index b0785239a2..3f474f09dc 100644 --- a/core/modules/help_topics/help_topics/menu_ui.menu_operations.html.twig +++ b/core/modules/help_topics/help_topics/menu_ui.menu_operations.html.twig @@ -4,12 +4,13 @@ related: - menu_ui.content_type_configuration - core.menus --- -{% set structure_menu = render_var(help_route_link('entity.menu.collection')) %} +{% set structure_menu_link_text %}{% trans %}Menus{% endtrans %}{% endset %} +{% set structure_menu_link = render_var(help_route_link(structure_menu_link_text, 'entity.menu.collection')) %}

                                                                  {% trans %}Goal{% endtrans %}

                                                                  {% trans %}Create a new menu.{% endtrans %}

                                                                  {% trans %}Steps{% endtrans %}

                                                                    -
                                                                  1. {% trans %}In the Manage administration menu, navigate Structure > Menus.{% endtrans %}
                                                                  2. +
                                                                  3. {% trans %}In the Manage administration menu, navigate Structure > {{ structure_menu_link }}.{% endtrans %}
                                                                  4. {% trans %}Click Add menu.{% endtrans %}
                                                                  5. {% trans %}Enter the title for the menu, which is used as the default block title if the menu is displayed as a block. If desired, also edit the machine name of the menu, which is by default derived from the title.{% endtrans %}
                                                                  6. {% trans %}Enter an administrative summary, which is displayed on the Menus page.{% endtrans %}
                                                                  7. diff --git a/core/modules/help_topics/help_topics/menu_ui.overriding.html.twig b/core/modules/help_topics/help_topics/menu_ui.overriding.html.twig index e4c4397dbc..53d9ee602e 100644 --- a/core/modules/help_topics/help_topics/menu_ui.overriding.html.twig +++ b/core/modules/help_topics/help_topics/menu_ui.overriding.html.twig @@ -5,12 +5,13 @@ related: - menu_ui.menu_operations - core.menus --- -{% set structure_menu = render_var(help_route_link('entity.menu.collection')) %} +{% set structure_menu_link_text %}{% trans %}Menus{% endtrans %}{% endset %} +{% set structure_menu_link = render_var(help_route_link(structure_menu_link_text, 'entity.menu.collection')) %}

                                                                    {% trans %}Goal{% endtrans %}

                                                                    {% trans %}Disable menu links or change the order and hierarchy of menu links.{% endtrans %}

                                                                    {% trans %}Steps{% endtrans %}

                                                                      -
                                                                    1. {% trans %}In the Manage administration menu, navigate to Structure > Menus.{% endtrans %}
                                                                    2. +
                                                                    3. {% trans %}In the Manage administration menu, navigate to Structure > {{ structure_menu_link }}.{% endtrans %}
                                                                    4. {% trans %}Click Edit menu for the menu that you want to edit.{% endtrans %}
                                                                    5. {% trans %}Drag menu links into a new order, or check/uncheck Enabled to enable or disable menu links.{% endtrans %}
                                                                    6. {% trans %}Click Save to save your changes.{% endtrans %}
                                                                    7. diff --git a/core/modules/help_topics/help_topics/migrate_drupal_ui.upgrading.html.twig b/core/modules/help_topics/help_topics/migrate_drupal_ui.upgrading.html.twig index f176e31d62..506e67f33b 100644 --- a/core/modules/help_topics/help_topics/migrate_drupal_ui.upgrading.html.twig +++ b/core/modules/help_topics/help_topics/migrate_drupal_ui.upgrading.html.twig @@ -3,14 +3,14 @@ label: 'Migrating data for an upgrade using the user interface' related: - migrate.overview --- -{% set migrate_drupal_upgrade = render_var(help_route_link('migrate_drupal_ui.upgrade')) %} -{% set migrate_drupal_log = render_var(help_route_link('dblog.overview')) %} +{% set migrate_drupal_upgrade_link_text %}{% trans %}Upgrade{% endtrans %}{% endset %} +{% set migrate_drupal_upgrade_link = render_var(help_route_link(migrate_drupal_upgrade_link_text, 'migrate_drupal_ui.upgrade')) %} {% set overview_topic = render_var(url('help.help_topic', {'id': 'migrate.overview'})) %}

                                                                      {% trans %}Goal{% endtrans %}

                                                                      {% trans %}Migrate data into a new, empty site, as part of an upgrade from an older version of Drupal. See Migrating and upgrading for an overview of migrating and upgrading.{% endtrans %}

                                                                      {% trans %}Steps{% endtrans %}

                                                                        -
                                                                      1. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Upgrade.{% endtrans %}
                                                                      2. +
                                                                      3. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > {{ migrate_drupal_upgrade_link }}.{% endtrans %}
                                                                      4. {% trans %}Read the introduction and follow the Preparation steps on the page. Then click Continue.{% endtrans %}
                                                                      5. {% trans %}Select the Drupal version of the source site. Also enter the database credentials and public and private files directories (private file directory is not available when migrating from Drupal 6). Click Review upgrade.{% endtrans %}
                                                                      6. {% trans %}If the next page you see contains a message about conflicting content, that means that the site where you are running the upgrade is not empty. If you continue, you will lose the data in the site. If that is acceptable, click the button to continue; if not, start these steps over in a new, clean Drupal site.{% endtrans %}
                                                                      7. diff --git a/core/modules/help_topics/help_topics/responsive_image.style.html.twig b/core/modules/help_topics/help_topics/responsive_image.style.html.twig index b0eadadadf..1ca94d43a9 100644 --- a/core/modules/help_topics/help_topics/responsive_image.style.html.twig +++ b/core/modules/help_topics/help_topics/responsive_image.style.html.twig @@ -10,12 +10,13 @@ related: {% set overview = render_var(url('help.help_topic', {'id': 'core.media'})) %} {% set image_style = render_var(url('help.help_topic', {'id': 'image.style'})) %} {% set breakpoint = render_var(url('help.help_topic', {'id': 'breakpoint.overview'})) %} -{% set styles = render_var(help_route_link('entity.responsive_image_style.collection')) %} +{% set styles_link_text %}{% trans %}Responsive image styles{% endtrans %}{% endset %} +{% set styles_link = render_var(help_route_link(styles_link_text, 'entity.responsive_image_style.collection')) %}

                                                                        {% trans %}Goal{% endtrans %}

                                                                        {% trans %}Configure a responsive image style, which can be used to display images at different sizes on different devices. See Managing media for an overview of responsive image styles, and Managing height, width, and resolution breakpoints for an overview of breakpoints.{% endtrans %}

                                                                        {% trans %}Steps{% endtrans %}

                                                                          -
                                                                        1. {% trans %}In the Manage administrative menu, navigate to Configuration > Media > Responsive image styles.{% endtrans %}
                                                                        2. +
                                                                        3. {% trans %}In the Manage administrative menu, navigate to Configuration > Media > {{ styles_link }}.{% endtrans %}
                                                                        4. {% trans %}Click Add responsive image style.{% endtrans %}
                                                                        5. {% trans %}Enter a descriptive Label for your style.{% endtrans %}
                                                                        6. {% trans %}Select a Breakpoint group from the groups defined by your installed themes and modules.{% endtrans %}
                                                                        7. diff --git a/core/modules/help_topics/help_topics/search.configuring.html.twig b/core/modules/help_topics/help_topics/search.configuring.html.twig index 513fb9b74f..7c2b3b2b48 100644 --- a/core/modules/help_topics/help_topics/search.configuring.html.twig +++ b/core/modules/help_topics/help_topics/search.configuring.html.twig @@ -4,13 +4,14 @@ related: - search.overview - search.index --- -{% set search_settings = render_var(help_route_link('entity.search_page.collection')) %} +{% set search_settings_link_text %}{% trans %}Search pages{% endtrans %}{% endset %} +{% set search_settings_link = render_var(help_route_link(search_settings_link_text, 'entity.search_page.collection')) %} {% set index_topic = render_var(url('help.help_topic', {'id': 'search.index'})) %}

                                                                          {% trans %}Goal{% endtrans %}

                                                                          {% trans %}Configure one or more search pages.{% endtrans %}

                                                                          {% trans %}Steps{% endtrans %}

                                                                            -
                                                                          1. {% trans %}In the Manage administrative menu, navigate to Configuration > Search and Metadata > Search pages.{% endtrans %}
                                                                          2. +
                                                                          3. {% trans %}In the Manage administrative menu, navigate to Configuration > Search and Metadata > {{ search_settings_link }}.{% endtrans %}
                                                                          4. {% trans %}Scroll down to the Search pages section. You will see a list of the already-configured search pages on your site.{% endtrans %}
                                                                          5. {% trans %}To configure an existing search page, click Edit. Or, to add a new search page, select the Search page type and click Add search page.{% endtrans %}
                                                                          6. {% trans %}Enter the desired Label name and URL Path for the search page.{% endtrans %}
                                                                          7. diff --git a/core/modules/help_topics/help_topics/search.index.html.twig b/core/modules/help_topics/help_topics/search.index.html.twig index fce9a50f6b..e42aa5100f 100644 --- a/core/modules/help_topics/help_topics/search.index.html.twig +++ b/core/modules/help_topics/help_topics/search.index.html.twig @@ -5,14 +5,15 @@ related: - search.configuring --- {% set cron_topic = render_var(url('help.help_topic', {'id': 'core.cron'})) %} -{% set search_settings = render_var(help_route_link('entity.search_page.collection')) %} +{% set search_settings_link_text %}{% trans %}Search pages{% endtrans %}{% endset %} +{% set search_settings_link = render_var(help_route_link(search_settings_link_text, 'entity.search_page.collection')) %}

                                                                            {% trans %}Goal{% endtrans %}

                                                                            {% trans %}Manage the search index, and make sure that the site is fully indexed for searching.{% endtrans %}

                                                                            {% trans %}What is the search index?{% endtrans %}

                                                                            {% trans %}The Content and Help search types provided by the core software pre-index their content and store the results in several database tables that are collectively called the search index. The process of indexing renders the content and breaks it up into words, which can then be matched more efficiently with keyword queries when users perform searches. Search indexing happens during cron runs; see Running and configuring cron for more information about cron.{% endtrans %}

                                                                            {% trans %}Steps{% endtrans %}

                                                                              -
                                                                            1. {% trans %}In the Manage administrative menu, navigate to Configuration > Search and Metadata > Search pages.{% endtrans %}
                                                                            2. +
                                                                            3. {% trans %}In the Manage administrative menu, navigate to Configuration > Search and Metadata > {{ search_settings_link }}.{% endtrans %}
                                                                            4. {% trans %}Under Indexing throttle, select the Number of items to index per cron run. A smaller number will make cron faster and reduce the possibility of timeout; a larger number will make sure more of your site is indexed in fewer cron runs.{% endtrans %}
                                                                            5. {% trans %}Under Default indexing settings, enter the desired Minimum word length to index. Words smaller than this length will be dropped from both keywords when searching and content when indexing.{% endtrans %}
                                                                            6. {% trans %}If your site uses Chinese, Japanese, or Korean languages, optionally check Simple CJK handling under Default indexing settings to provide some support for these languages.{% endtrans %}
                                                                            7. diff --git a/core/modules/help_topics/help_topics/search.overview.html.twig b/core/modules/help_topics/help_topics/search.overview.html.twig index 2e938ad549..313dffd342 100644 --- a/core/modules/help_topics/help_topics/search.overview.html.twig +++ b/core/modules/help_topics/help_topics/search.overview.html.twig @@ -5,11 +5,12 @@ related: - user.permissions - block.place --- -{% set search_url = render_var(help_route_link('search.view')) %} +{% set search_link_text %}{% trans %}Search page{% endtrans %}{% endset %} +{% set search_link = render_var(help_route_link(search_link_text, 'search.view')) %} {% set user_topic = render_var(url('help.help_topic', {'id': 'user.overview'})) %}

                                                                              {% trans %}What are search pages?{% endtrans %}

                                                                              {% trans %}The core Search module organizes site search into pages. Each page allows users to search a particular type of content with a particular configuration. The configuration includes specifying a URL that starts with search, a name for the page, and additional options for some search page types.{% endtrans %}

                                                                              -

                                                                              {% trans %}When users visit the main Search page, they will see the configured search pages that they have access to. Each search page has a search form on it, and the page will display search results after the user enters keywords into the form and clicks the search button.{% endtrans %}

                                                                              +

                                                                              {% trans %}When users visit the main {{ search_link }}, they will see the configured search pages that they have access to. Each search page has a search form on it, and the page will display search results after the user enters keywords into the form and clicks the search button.{% endtrans %}

                                                                              {% trans %}What modules provide site search?{% endtrans %}

                                                                              {% trans %}The core Search module provides the ability to configure search pages; search page types are provided by both core and contributed modules. The core modules that provide search page types are:{% endtrans %}

                                                                                diff --git a/core/modules/help_topics/help_topics/statistics.tracking_popular_content.html.twig b/core/modules/help_topics/help_topics/statistics.tracking_popular_content.html.twig index 3bf81762ee..fc3d20b0a5 100644 --- a/core/modules/help_topics/help_topics/statistics.tracking_popular_content.html.twig +++ b/core/modules/help_topics/help_topics/statistics.tracking_popular_content.html.twig @@ -6,17 +6,19 @@ related: - tracker.tracking_changed_content - block.place --- -{% set statistics_settings = render_var(help_route_link('statistics.settings')) %} -{% set permissions = render_var(help_route_link('user.admin_permissions')) %} +{% set statistics_settings_link_text %}{% trans %}Statistics{% endtrans %}{% endset %} +{% set statistics_settings_link = render_var(help_route_link(statistics_settings_link_text, 'statistics.settings')) %} +{% set permissions_link_text %}{% trans %}Permissions{% endtrans %}{% endset %} +{% set permissions_link = render_var(help_route_link(permissions_link_text, 'user.admin_permissions')) %}

                                                                                {% trans %}Goal{% endtrans %}

                                                                                {% trans %}Configure and display tracking of how many times content has been viewed on your site, assuming that the core Statistics module is currently installed.{% endtrans %}

                                                                                {% trans %}What are the options for displaying popularity tracking?{% endtrans %}

                                                                                {% trans %}You can display a content hits counter of how many times a content item has been viewed, at the bottom of content item pages. You can also place a Popular content block in a region of your theme, which shows a list of the most popular and most recently-viewed content.{% endtrans %}

                                                                                {% trans %}Steps{% endtrans %}

                                                                                  -
                                                                                1. {% trans %}In the Manage administrative menu, navigate to Configuration > System > Statistics.{% endtrans %}
                                                                                2. +
                                                                                3. {% trans %}In the Manage administrative menu, navigate to Configuration > System > {{ statistics_settings_link }}.{% endtrans %}
                                                                                4. {% trans %}Check Count content views and click Save configuration.{% endtrans %}
                                                                                5. -
                                                                                6. {% trans %}In the Manage administrative menu, navigate to People > Permissions.{% endtrans %}
                                                                                7. +
                                                                                8. {% trans %}In the Manage administrative menu, navigate to People > {{ permissions_link }}.{% endtrans %}
                                                                                9. {% trans %}In the Statistics section, check or uncheck the View content hits permission for each role. Click Save permissions.{% endtrans %}
                                                                                10. {% trans %}Optionally, in the Manage administrative menu, navigate to Structure > Block layout. Place the Popular content block in a region in your theme (you will need to have the core Block module installed; see related topic for more details on block placement).{% endtrans %}
                                                                                diff --git a/core/modules/help_topics/help_topics/system.cache.html.twig b/core/modules/help_topics/help_topics/system.cache.html.twig index 7fc7eb69e1..cd9a389a96 100644 --- a/core/modules/help_topics/help_topics/system.cache.html.twig +++ b/core/modules/help_topics/help_topics/system.cache.html.twig @@ -3,14 +3,15 @@ label: 'Clearing the site cache' related: - core.maintenance --- -{% set performance_url = render_var(help_route_link('system.performance_settings')) %} +{% set performance_link_text %}{% trans %}Performance{% endtrans %}{% endset %} +{% set performance_link = render_var(help_route_link(performance_link_text, 'system.performance_settings')) %}

                                                                                {% trans %}Goal{% endtrans %}

                                                                                {% trans %}Clear the data in the site cache.{% endtrans %}

                                                                                {% trans %}What is the cache?{% endtrans %}

                                                                                {% trans %}Some of the calculations that are done when your site loads a page take a long time to run. To save time when these calculations would need to be done again, their results can be cached in your site's database. There are internal mechanisms to clear cached data when the conditions or assumptions that went into the calculation have changed, but you can also clear cached data manually. When your site is misbehaving, a good first step is to clear the cache and see if the problem goes away.{% endtrans %}

                                                                                {% trans %}Steps{% endtrans %}

                                                                                  -
                                                                                1. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Performance.{% endtrans %}
                                                                                2. +
                                                                                3. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > {{ performance_link }}.{% endtrans %}
                                                                                4. {% trans %}Click Clear all caches. Your site's cached data will be cleared.{% endtrans %}

                                                                                {% trans %}Additional resources{% endtrans %}

                                                                                diff --git a/core/modules/help_topics/help_topics/system.config_basic.html.twig b/core/modules/help_topics/help_topics/system.config_basic.html.twig index cb2fda8d10..e23eb04753 100644 --- a/core/modules/help_topics/help_topics/system.config_basic.html.twig +++ b/core/modules/help_topics/help_topics/system.config_basic.html.twig @@ -4,20 +4,23 @@ top_level: true related: - user.security_account_settings --- -{% set regional_url = render_var(help_route_link('system.regional_settings')) %} -{% set information_url = render_var(help_route_link('system.site_information_settings')) %} -{% set datetime_url = render_var(help_route_link('entity.date_format.collection')) %} +{% set regional_link_text %}{% trans %}Regional settings{% endtrans %}{% endset %} +{% set regional_link = render_var(help_route_link(regional_link_text, 'system.regional_settings')) %} +{% set information_link_text %}{% trans %}Basic site settings{% endtrans %}{% endset %} +{% set information_link = render_var(help_route_link(information_link_text, 'system.site_information_settings')) %} +{% set datetime_link_text %}{% trans %}Date and time formats{% endtrans %}{% endset %} +{% set datetime_link = render_var(help_route_link(datetime_link_text, 'entity.date_format.collection')) %}

                                                                                {% trans %}Goal{% endtrans %}

                                                                                {% trans %}Configure the basic settings of your site, including the site name, slogan, main email address, default time zone, default country, and the date formats to use.{% endtrans %}

                                                                                {% trans %}Steps{% endtrans %}

                                                                                  -
                                                                                1. {% trans %}In the Manage administrative menu, navigate to Configuration > System > Basic site settings.{% endtrans %}
                                                                                2. +
                                                                                3. {% trans %}In the Manage administrative menu, navigate to Configuration > System > {{ information_link }}.{% endtrans %}
                                                                                4. {% trans %}Enter the site name, slogan, and main email address for your site. {% endtrans %}
                                                                                5. {% trans %}Click Save configuration. You should see a message indicating that the settings were saved.{% endtrans %}
                                                                                6. -
                                                                                7. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > Regional settings.{% endtrans %}
                                                                                8. +
                                                                                9. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > {{ regional_link }}.{% endtrans %}
                                                                                10. {% trans %}Select the default country and default time zone for your site.{% endtrans %}
                                                                                11. {% trans %}Click Save configuration. You should see a message indicating that the settings were saved.{% endtrans %}
                                                                                12. -
                                                                                13. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > Date and time formats.{% endtrans %}
                                                                                14. +
                                                                                15. {% trans %}In the Manage administrative menu, navigate to Configuration > Regional and language > {{ datetime_link }}.{% endtrans %}
                                                                                16. {% trans %}Look at the Patterns for the Default long, medium, and short date formats. If any of them does not match the date format you want to use on your site, click Edit in that row to edit the format.{% endtrans %}
                                                                                17. {% trans %}Adjust the Format string until the Displayed format matches what you want. (Date format strings are composed of PHP date format codes.){% endtrans %}
                                                                                18. {% trans %}Click Save format. You should see a message indicating that the format was saved.{% endtrans %}
                                                                                19. diff --git a/core/modules/help_topics/help_topics/system.config_error.html.twig b/core/modules/help_topics/help_topics/system.config_error.html.twig index 14dd9d7e9c..812eda55da 100644 --- a/core/modules/help_topics/help_topics/system.config_error.html.twig +++ b/core/modules/help_topics/help_topics/system.config_error.html.twig @@ -4,8 +4,10 @@ related: - system.config_basic - core.maintenance --- -{% set log_settings_url = render_var(help_route_link('system.logging_settings')) %} -{% set information_url = render_var(help_route_link('system.site_information_settings')) %} +{% set log_settings_link_text %}{% trans %}Logging and errors{% endtrans %}{% endset %} +{% set log_settings_link = render_var(help_route_link(log_settings_link_text, 'system.logging_settings')) %} +{% set information_link_text %}{% trans %}Basic site settings{% endtrans %}{% endset %} +{% set information_link = render_var(help_route_link(information_link_text, 'system.site_information_settings')) %}

                                                                                  {% trans %}Goal{% endtrans %}

                                                                                  {% trans %}Set up your site to respond appropriately to site errors, including 403 and 404 page responses.{% endtrans %}

                                                                                  {% trans %}What are 403 and 404 responses?{% endtrans %}

                                                                                  @@ -15,10 +17,10 @@ related:

                                                                                  {% trans %}Steps {% endtrans %}

                                                                                  1. {% trans %}If desired, create pages to use for 403 and 404 responses. Note the URLs for these pages.{% endtrans %}
                                                                                  2. -
                                                                                  3. {% trans %}In the Manage administrative menu, navigate to Configuration > System > Basic site settings.{% endtrans %}
                                                                                  4. +
                                                                                  5. {% trans %}In the Manage administrative menu, navigate to Configuration > System > {{ information_link }}.{% endtrans %}
                                                                                  6. {% trans %}In the Error pages section, enter the URL for your 403/403 pages, starting after the site home page URL. For example, if your site URL is https://example.com and your 404 page is https://example.com/not-found, you would enter /not-found.{% endtrans %}
                                                                                  7. {% trans %}Click Save configuration. You should see a message indicating that the settings were saved.{% endtrans %}
                                                                                  8. -
                                                                                  9. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Logging and errors.{% endtrans %}
                                                                                  10. +
                                                                                  11. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > {{ log_settings_link }}.{% endtrans %}
                                                                                  12. {% trans %}For a production site, select None under Error messages to display. For a site that is in development, select one of the other options, so that you are more aware of the errors the site is generating.{% endtrans %}
                                                                                  13. {% trans %}Click Save configuration. You should see a message indicating that the settings were saved.{% endtrans %}
                                                                                  diff --git a/core/modules/help_topics/help_topics/system.maintenance_mode.html.twig b/core/modules/help_topics/help_topics/system.maintenance_mode.html.twig index e60d03c96c..68d9e05e6f 100644 --- a/core/modules/help_topics/help_topics/system.maintenance_mode.html.twig +++ b/core/modules/help_topics/help_topics/system.maintenance_mode.html.twig @@ -4,7 +4,8 @@ related: - core.maintenance - system.cache --- -{% set maintenance_url = render_var(help_route_link('system.site_maintenance_mode')) %} +{% set maintenance_link_text %}{% trans %}Maintenance mode{% endtrans %}{% endset %} +{% set maintenance_link = render_var(help_route_link(maintenance_link_text, 'system.site_maintenance_mode')) %} {% set cache_help = render_var(url('help.help_topic', {'id': 'system.cache'})) %}

                                                                                  {% trans %}Goal{% endtrans %}

                                                                                  {% trans %}Put your site in maintenance mode to perform maintenance operations, and then return to normal mode when finished.{% endtrans %}

                                                                                  @@ -12,10 +13,10 @@ related:

                                                                                  {% trans %}When your site is in maintenance mode, most site visitors will see a simple maintenance mode message page, rather than being able to use the full functionality of the site. Users with Use the site in maintenance mode permission who are already logged in will be able to use the full site, and the log in page at /user will also be accessible to anyone.{% endtrans %}

                                                                                  {% trans %}Steps{% endtrans %}

                                                                                    -
                                                                                  1. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Maintenance mode.{% endtrans %}
                                                                                  2. +
                                                                                  3. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > {{ maintenance_link }}.{% endtrans %}
                                                                                  4. {% trans %}Check Put site into maintenance mode, optionally change the Message to display when in maintenance mode, and click Save configuration. Your site will be in maintenance mode.{% endtrans %}
                                                                                  5. {% trans %}Perform your maintenance operations.{% endtrans %}
                                                                                  6. -
                                                                                  7. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > Maintenance mode.{% endtrans %}
                                                                                  8. +
                                                                                  9. {% trans %}In the Manage administrative menu, navigate to Configuration > Development > {{ maintenance_link }}.{% endtrans %}
                                                                                  10. {% trans %}Uncheck Put site into maintenance mode and click Save configuration. Your site will be back in normal operation mode.{% endtrans %}
                                                                                  11. {% trans %}Clear the site cache. See Clearing the site cache for instructions.{% endtrans %}
                                                                                  diff --git a/core/modules/help_topics/help_topics/system.module_install.html.twig b/core/modules/help_topics/help_topics/system.module_install.html.twig index 417e4bbd36..0b283701e7 100644 --- a/core/modules/help_topics/help_topics/system.module_install.html.twig +++ b/core/modules/help_topics/help_topics/system.module_install.html.twig @@ -4,12 +4,13 @@ related: - core.extending - system.module_uninstall --- -{% set extend_url = render_var(help_route_link('system.modules_list')) %} +{% set extend_link_text %}{% trans %}Extend{% endtrans %}{% endset %} +{% set extend_link = render_var(help_route_link(extend_link_text, 'system.modules_list')) %}

                                                                                  {% trans %}Goal{% endtrans %}

                                                                                  {% trans %}Install a core module, or a contributed module that has already been downloaded.{% endtrans %}

                                                                                  {% trans %}Steps{% endtrans %}

                                                                                    -
                                                                                  1. {% trans %}In the Manage administrative menu, navigate to Extend.{% endtrans %}
                                                                                  2. +
                                                                                  3. {% trans %}In the Manage administrative menu, navigate to {{ extend_link }}.{% endtrans %}
                                                                                  4. {% trans %}Enter a word from the module name or description into the filter box, to make the list of modules smaller. Locate the module you want to install.{% endtrans %}
                                                                                  5. {% trans %}Check the box next to the name of the module you want to install; you can also check more than one box to install multiple modules at the same time. If the checkbox is disabled for the module you are trying to install, expand the information to see why -- you may need to download an additional module that your module requires.{% endtrans %}
                                                                                  6. {% trans %}Click Install at the bottom of the page. If you chose to install a module with dependencies that were not already installed, or if you chose an Experimental module, confirm your choice on the next page.{% endtrans %}
                                                                                  7. diff --git a/core/modules/help_topics/help_topics/system.module_uninstall.html.twig b/core/modules/help_topics/help_topics/system.module_uninstall.html.twig index 127644c620..10d59ae9b8 100644 --- a/core/modules/help_topics/help_topics/system.module_uninstall.html.twig +++ b/core/modules/help_topics/help_topics/system.module_uninstall.html.twig @@ -5,12 +5,13 @@ related: - system.module_install - system.maintenance_mode --- -{% set uninstall_url = render_var(help_route_link('system.modules_uninstall')) %} +{% set uninstall_link_text %}{% trans %}Uninstall{% endtrans %}{% endset %} +{% set uninstall_link = render_var(help_route_link('system.modules_uninstall')) %} {% set maintenance_topic = render_var(url('help.help_topic', {'id': 'system.maintenance_mode'})) %}

                                                                                    {% trans %}Goal{% endtrans %}

                                                                                    {% trans %}Uninstall a module. Your site should be in maintenance mode when you uninstall modules.{% endtrans %}

                                                                                    {% trans %}Steps{% endtrans %}

                                                                                      -
                                                                                    1. {% trans %}In the Manage administrative menu, navigate to Extend > Uninstall.{% endtrans %}
                                                                                    2. +
                                                                                    3. {% trans %}In the Manage administrative menu, navigate to Extend > {{ uninstall_link }}.{% endtrans %}
                                                                                    4. {% trans %}Enter a word from the module name or description into the filter box, to make the list of modules smaller. Locate the module you want to uninstall.{% endtrans %}
                                                                                    5. {% trans %}In the Description column, see if there are reasons that this module cannot be uninstalled. For example, you may have created content using this module (which you would need to delete first), or there may be another module installed that requires this module to be installed (you would need to uninstall the other module first).{% endtrans %}
                                                                                    6. {% trans %}If there are no reasons listed, the module can be uninstalled. Check the box in the Uninstall column, next to the module's name.{% endtrans %}
                                                                                    7. diff --git a/core/modules/help_topics/help_topics/system.reports.html.twig b/core/modules/help_topics/help_topics/system.reports.html.twig index d8458590ef..cf00772a22 100644 --- a/core/modules/help_topics/help_topics/system.reports.html.twig +++ b/core/modules/help_topics/help_topics/system.reports.html.twig @@ -5,12 +5,13 @@ related: - core.security - system.config_error --- -{% set status_url = render_var(help_route_link('system.status')) %} +{% set status_link_text %}{% trans %}Status report{% endtrans %}{% endset %} +{% set status_link = render_var(help_route_link(status_link_text, 'system.status')) %}

                                                                                      {% trans %}Goal{% endtrans %}

                                                                                      {% trans %}Run reports to learn about the status and health of your site.{% endtrans %}

                                                                                      {% trans %}Steps{% endtrans %}

                                                                                        -
                                                                                      1. {% trans %}In the Manage administrative menu, navigate to Reports > Status report to see a report that summarizes the health and status of your site. If there are any warnings or errors, you will need to fix them.{% endtrans %}
                                                                                      2. +
                                                                                      3. {% trans %}In the Manage administrative menu, navigate to Reports > {{ status_link }} to see a report that summarizes the health and status of your site. If there are any warnings or errors, you will need to fix them.{% endtrans %}
                                                                                      4. {% trans %}If you have the core Database Logging module installed, in the Manage administrative menu, navigate to Reports > Recent log messages to see a report of the error and informational messages your site has generated. You can filter the report by Severity to see only the most critical messages, if desired.{% endtrans %}
                                                                                      5. {% trans %}If you have the core Update Manager module installed, in the Manage administrative menu, navigate to Reports > Available updates to see a report of the updates that are available for your site software. If Last checked is far in the past, click Check manually to update the report. Scan the report; if Drupal core or any modules or themes have security updates available, you should update them as soon as possible.{% endtrans %}
                                                                                      diff --git a/core/modules/help_topics/help_topics/system.theme_install.html.twig b/core/modules/help_topics/help_topics/system.theme_install.html.twig index 8efa8c4660..831491f4dd 100644 --- a/core/modules/help_topics/help_topics/system.theme_install.html.twig +++ b/core/modules/help_topics/help_topics/system.theme_install.html.twig @@ -4,12 +4,13 @@ related: - core.appearance - system.theme_uninstall --- -{% set themes_url = render_var(help_route_link('system.themes_page')) %} +{% set themes_link_text %}{% trans %}Appearance{% endtrans %}{% endset %} +{% set themes_link = render_var(help_route_link(themes_link_text, 'system.themes_page')) %}

                                                                                      {% trans %}Goal{% endtrans %}

                                                                                      {% trans %}Install a core theme, or a contributed theme that has already been downloaded. Choose the default themes to use for the site and for administrative pages.{% endtrans %}

                                                                                      {% trans %}Steps{% endtrans %}

                                                                                        -
                                                                                      1. {% trans %}In the Manage administrative menu, navigate to Appearance.{% endtrans %}
                                                                                      2. +
                                                                                      3. {% trans %}In the Manage administrative menu, navigate to {{ themes_link }}.{% endtrans %}
                                                                                      4. {% trans %}Locate the themes that you want to use as the site default theme and for administrative pages.{% endtrans %}
                                                                                      5. {% trans %}For each of these themes, if the theme is in the Uninstalled themes section, click the Install link to install the theme. Wait for the theme to be installed (translations might be downloaded). You should be returned to the Appearance page.{% endtrans %}
                                                                                      6. {% trans %}Locate the theme that you want to be your default theme, which should now be in the Installed themes section. If it is not already labeled as the default theme, click the Set as default link.{% endtrans %}
                                                                                      7. diff --git a/core/modules/help_topics/help_topics/system.theme_uninstall.html.twig b/core/modules/help_topics/help_topics/system.theme_uninstall.html.twig index 940d8dd3ff..4350cf05ce 100644 --- a/core/modules/help_topics/help_topics/system.theme_uninstall.html.twig +++ b/core/modules/help_topics/help_topics/system.theme_uninstall.html.twig @@ -4,12 +4,13 @@ related: - core.appearance - system.theme_install --- -{% set themes_url = render_var(help_route_link('system.themes_page')) %} +{% set themes_link_text %}{% trans %}Appearance{% endtrans %}{% endset %} +{% set themes_link = render_var(help_route_link(themes_link_text, 'system.themes_page')) %}

                                                                                        {% trans %}Goal{% endtrans %}

                                                                                        {% trans %}Uninstall a theme that was previously installed, but is no longer being used on the site.{% endtrans %}

                                                                                        {% trans %}Steps{% endtrans %}

                                                                                          -
                                                                                        1. {% trans %}In the Manage administrative menu, navigate to Appearance.{% endtrans %}
                                                                                        2. +
                                                                                        3. {% trans %}In the Manage administrative menu, navigate to {{ themes_link }}.{% endtrans %}
                                                                                        4. {% trans %}Locate the theme that you want to uninstall, in the Installed themes section.{% endtrans %}
                                                                                        5. {% trans %}Click the Uninstall link to install the theme. If there is not an Uninstall link, the theme cannot be uninstalled because it is either being used as the site default theme, being used as the Administration theme, or is the base theme for another installed theme.{% endtrans %}
                                                                                        diff --git a/core/modules/help_topics/help_topics/tracker.tracking_changed_content.html.twig b/core/modules/help_topics/help_topics/tracker.tracking_changed_content.html.twig index fd48192914..d25043ee6b 100644 --- a/core/modules/help_topics/help_topics/tracker.tracking_changed_content.html.twig +++ b/core/modules/help_topics/help_topics/tracker.tracking_changed_content.html.twig @@ -5,11 +5,12 @@ related: - statistics.tracking_popular_content - history.tracking_user_content --- -{% set recent = render_var(help_route_link('tracker.page')) %} +{% set recent_link_text %}{% trans %}Recent content{% endtrans %}{% endset %} +{% set recent_link = render_var(help_route_link(recent_link_text, 'tracker.page')) %}

                                                                                        {% trans %}What displays of recently-updated content are available?{% endtrans %}

                                                                                        {% trans %}Assuming that you have the core Activity Tracker module installed, these pages that show recently-updated content are available:{% endtrans %}

                                                                                          -
                                                                                        • {% trans %}Recent content: Shows the content that has been most recently added, updated, or commented on.{% endtrans %}
                                                                                        • +
                                                                                        • {% trans %}{{ recent_link }}: Shows the content that has been most recently added, updated, or commented on.{% endtrans %}
                                                                                        • {% trans %}The My recent content tab on the Recent content page (for logged-in users) limits the list to content created or commented on by the user viewing the page.{% endtrans %}
                                                                                        • {% trans %}The Activity tab on a user profile shows the same list for the user whose profile is being viewed.{% endtrans %}
                                                                                        diff --git a/core/modules/help_topics/help_topics/user.create.html.twig b/core/modules/help_topics/help_topics/user.create.html.twig index 58b09e44da..1eced62dee 100644 --- a/core/modules/help_topics/help_topics/user.create.html.twig +++ b/core/modules/help_topics/help_topics/user.create.html.twig @@ -4,12 +4,13 @@ related: - user.security_account_settings - user.overview --- -{% set people_url = render_var(help_route_link('entity.user.collection')) %} +{% set people_link_text %}{% trans %}People{% endtrans %}{% endset %} +{% set people_link = render_var(help_route_link(people_link_text, 'entity.user.collection')) %}

                                                                                        {% trans %}Goal{% endtrans %}

                                                                                        {% trans %}Create a new user account.{% endtrans %}

                                                                                        {% trans %}Steps{% endtrans %}

                                                                                          -
                                                                                        1. {% trans %}In the Manage administrative menu, navigate to People.{% endtrans %}
                                                                                        2. +
                                                                                        3. {% trans %}In the Manage administrative menu, navigate to {{ people_link }}.{% endtrans %}
                                                                                        4. {% trans %}Click Add user.{% endtrans %}
                                                                                        5. {% trans %}Enter the Email address, Username, and Password (twice) for the new user.{% endtrans %}
                                                                                        6. {% trans %}Verify that the Roles checked for the new user are correct.{% endtrans %}
                                                                                        7. diff --git a/core/modules/help_topics/help_topics/user.new_role.html.twig b/core/modules/help_topics/help_topics/user.new_role.html.twig index ef96a3a551..19ef09fb46 100644 --- a/core/modules/help_topics/help_topics/user.new_role.html.twig +++ b/core/modules/help_topics/help_topics/user.new_role.html.twig @@ -4,12 +4,13 @@ related: - user.overview - user.permissions --- -{% set roles_url = render_var(help_route_link('entity.user_role.collection')) %} +{% set roles_link_text %}{% trans %}Roles{% endtrans %}{% endset %} +{% set roles_link = render_var(help_route_link(roles_link_text, 'entity.user_role.collection')) %}

                                                                                          {% trans %}Goal{% endtrans %}

                                                                                          {% trans %}Create a new role.{% endtrans %}

                                                                                          {% trans %}Steps{% endtrans %}

                                                                                            -
                                                                                          1. {% trans %}In the Manage administrative menu, navigate to People > Roles.{% endtrans %}
                                                                                          2. +
                                                                                          3. {% trans %}In the Manage administrative menu, navigate to People > {{ roles_link }}.{% endtrans %}
                                                                                          4. {% trans %}Click Add role.{% endtrans %}
                                                                                          5. {% trans %}Enter the desired Role name. If desired, click Edit to change the Machine name for the role.{% endtrans %}
                                                                                          6. {% trans %}Click Save. You should be returned to the Roles page and your new role should be in the role list.{% endtrans %}
                                                                                          7. diff --git a/core/modules/help_topics/help_topics/user.permissions.html.twig b/core/modules/help_topics/help_topics/user.permissions.html.twig index 20f7088299..0f55bebc01 100644 --- a/core/modules/help_topics/help_topics/user.permissions.html.twig +++ b/core/modules/help_topics/help_topics/user.permissions.html.twig @@ -5,12 +5,13 @@ related: - user.new_role - core.security --- -{% set permissions_url = render_var(help_route_link('user.admin_permissions')) %} +{% set permissions_link_text %}{% trans %}Permissions{% endtrans %}{% endset %} +{% set permissions_link = render_var(help_route_link(permissions_link_text, 'user.admin_permissions')) %}

                                                                                            {% trans %}Goal{% endtrans %}

                                                                                            {% trans %}Modify the permissions for an existing role.{% endtrans %}

                                                                                            {% trans %}Steps{% endtrans %}

                                                                                              -
                                                                                            1. {% trans %}In the Manage administrative menu, navigate to People > Permissions.{% endtrans %}
                                                                                            2. +
                                                                                            3. {% trans %}In the Manage administrative menu, navigate to People > {{ permissions_link }}.{% endtrans %}
                                                                                            4. {% trans %}Review the permissions for the role, paying particular attention to the permissions marked with Warning: Give to trusted roles only; this permission has security implications. Uncheck permissions that this role should not have, in the row of the permission and the column of the role; check permissions that this role should have.{% endtrans %}
                                                                                            5. {% trans %}Click Save permissions.{% endtrans %}
                                                                                            diff --git a/core/modules/help_topics/help_topics/user.security_account_settings.html.twig b/core/modules/help_topics/help_topics/user.security_account_settings.html.twig index d8bd7353ef..10120ba6c3 100644 --- a/core/modules/help_topics/help_topics/user.security_account_settings.html.twig +++ b/core/modules/help_topics/help_topics/user.security_account_settings.html.twig @@ -4,7 +4,8 @@ related: - core.security - user.overview --- -{% set account_settings_url = render_var(help_route_link('entity.user.admin_form')) %} +{% set account_settings_link_text %}{% trans %}Account settings{% endtrans %}{% endset %} +{% set account_settings_link = render_var(help_route_link(account_settings_link_text, 'entity.user.admin_form')) %}

                                                                                            {% trans %}Goal{% endtrans %}

                                                                                            {% trans %}Configure settings related to how user accounts are created and deleted.{% endtrans %}

                                                                                            {% trans %}What are the settings related to user account creation and deletion?{% endtrans %}

                                                                                            @@ -26,7 +27,7 @@ related:

                                                                              {% trans %}Steps{% endtrans %}

                                                                                -
                                                                              1. {% trans %}In the Manage administrative menu, navigate to Configuration > People > Account settings.{% endtrans %}
                                                                              2. +
                                                                              3. {% trans %}In the Manage administrative menu, navigate to Configuration > People > {{ account_settings_link }}.{% endtrans %}
                                                                              4. {% trans %}Select the method you want to use for creating user accounts, and check or uncheck the box that requires email verification, to match the settings you want for your site.{% endtrans %}
                                                                              5. {% trans %}Select the desired option for what happens to content that a user created if their account is canceled.{% endtrans %}
                                                                              6. {% trans %}Optionally, edit the text of email messages related to user accounts.{% endtrans %}
                                                                              7. diff --git a/core/modules/help_topics/help_topics/user.update.html.twig b/core/modules/help_topics/help_topics/user.update.html.twig index d98999b64a..876bb83219 100644 --- a/core/modules/help_topics/help_topics/user.update.html.twig +++ b/core/modules/help_topics/help_topics/user.update.html.twig @@ -4,12 +4,13 @@ related: - user.security_account_settings - user.overview --- -{% set people_url = render_var(help_route_link('entity.user.collection')) %} +{% set people_link_text %}{% trans %}People{% endtrans %}{% endset %} +{% set people_link = render_var(help_route_link('entity.user.collection')) %}

                                                                                {% trans %}Goal{% endtrans %}

                                                                                {% trans %}Update or delete an existing user account.{% endtrans %}

                                                                                {% trans %}Steps{% endtrans %}

                                                                                  -
                                                                                1. {% trans %}In the Manage administrative menu, navigate to People.{% endtrans %}
                                                                                2. +
                                                                                3. {% trans %}In the Manage administrative menu, navigate to {{ people_link }}.{% endtrans %}
                                                                                4. {% trans %}Enter all or part of the user name or email address of the user account you want to update or delete, and click Filter. A short list of user accounts, including the account of interest, should be shown in the table; if not, modify the filter text until you can find the account of interest.{% endtrans %}
                                                                                5. {% trans %}Click Edit in the Operations area of the account of interest.{% endtrans %}
                                                                                6. {% trans %}To delete the user account, scroll to the bottom and click Cancel account. Select what you want to happen to the user's content on the next screen, and click Cancel account.{% endtrans %}
                                                                                7. diff --git a/core/modules/help_topics/help_topics/views_ui.add_display.html.twig b/core/modules/help_topics/help_topics/views_ui.add_display.html.twig index 3b04fc58f1..e7e5ec1bc2 100644 --- a/core/modules/help_topics/help_topics/views_ui.add_display.html.twig +++ b/core/modules/help_topics/help_topics/views_ui.add_display.html.twig @@ -4,13 +4,14 @@ related: - views.overview - views_ui.edit --- -{% set views = render_var(help_route_link('entity.view.collection')) %} +{% set views_link_text %}{% trans %}Views{% endtrans %}{% endset %} +{% set views_link = render_var(help_route_link(views_link_text, 'entity.view.collection')) %} {% set view_edit = render_var(url('help.help_topic', {'id': 'views_ui.edit'})) %}

                                                                                  {% trans %}Goal{% endtrans %}

                                                                                  {% trans %}Add a new display to an existing view. This will allow you to display similar data to an existing view, using similar settings, in a new block, page, feed, etc.{% endtrans %}

                                                                                  {% trans %}Steps{% endtrans %}

                                                                                    -
                                                                                  1. {% trans %}If you are not already editing your view, in the Manage administrative menu, navigate to Structure > Views. Find the view you want to edit, and click its Edit link.{% endtrans %}
                                                                                  2. +
                                                                                  3. {% trans %}If you are not already editing your view, in the Manage administrative menu, navigate to Structure > {{ views_link }}. Find the view you want to edit, and click its Edit link.{% endtrans %}
                                                                                  4. {% trans %}Under Displays, click Add.{% endtrans %}
                                                                                  5. {% trans %}In the pop-up list, click the link for the type of display you want to add; the most common types are Page and Block. The new display will be added to your view, and you will be editing that display.{% endtrans %}
                                                                                  6. {% trans %}Optionally, click the link next to Display name and enter a new name to be shown for this display in the administrative interface.{% endtrans %}
                                                                                  7. diff --git a/core/modules/help_topics/help_topics/views_ui.create.html.twig b/core/modules/help_topics/help_topics/views_ui.create.html.twig index 6b2f095d95..ce42e1ceba 100644 --- a/core/modules/help_topics/help_topics/views_ui.create.html.twig +++ b/core/modules/help_topics/help_topics/views_ui.create.html.twig @@ -5,12 +5,13 @@ related: - views_ui.edit - views_ui.add_display --- -{% set views = render_var(help_route_link('entity.view.collection')) %} +{% set views_link_text %}{% trans %}Views{% endtrans %}{% endset %} +{% set views_link = render_var(help_route_link(views_link_text, 'entity.view.collection')) %}

                                                                                    {% trans %}Goal{% endtrans %}

                                                                                    {% trans %}Create a new view to list content or other items on your site.{% endtrans %}

                                                                                    {% trans %}Steps{% endtrans %}

                                                                                      -
                                                                                    1. {% trans %}In the Manage administrative menu, navigate to Structure > Views.{% endtrans %}
                                                                                    2. +
                                                                                    3. {% trans %}In the Manage administrative menu, navigate to Structure > {{ views_link }}.{% endtrans %}
                                                                                    4. {% trans %}Click Add view.{% endtrans %}
                                                                                    5. {% trans %}In the View name field, enter a name for the view, which is how it will be listed in the administrative interface.{% endtrans %}
                                                                                    6. {% trans %}In View settings > Show, select the base data type to display in your view. This cannot be changed later.{% endtrans %}
                                                                                    7. diff --git a/core/modules/help_topics/help_topics/views_ui.edit.html.twig b/core/modules/help_topics/help_topics/views_ui.edit.html.twig index e03875e1b3..4b1ee819fc 100644 --- a/core/modules/help_topics/help_topics/views_ui.edit.html.twig +++ b/core/modules/help_topics/help_topics/views_ui.edit.html.twig @@ -4,13 +4,14 @@ related: - views.overview - views_ui.add_display --- -{% set views = render_var(help_route_link('entity.view.collection')) %} +{% set views_link_text %}{% trans %}Views{% endtrans %}{% endset %} +{% set views_link = render_var(help_route_link(views_link_text, 'entity.view.collection')) %} {% set overview = render_var(url('help.help_topic', {'id': 'views.overview'})) %}

                                                                                      {% trans %}Goal{% endtrans %}

                                                                                      {% trans %}Edit an existing view display, to modify what data is displayed or how it is displayed.{% endtrans %}

                                                                                      {% trans %}Steps{% endtrans %}

                                                                                        -
                                                                                      1. {% trans %}If you are not already editing your view, in the Manage administrative menu, navigate to Structure > Views. Find the view you want to edit, and click its Edit link.{% endtrans %}
                                                                                      2. +
                                                                                      3. {% trans %}If you are not already editing your view, in the Manage administrative menu, navigate to Structure > {{ views_link }}. Find the view you want to edit, and click its Edit link.{% endtrans %}
                                                                                      4. {% trans %}Under Displays, click the display you want to edit.{% endtrans %}
                                                                                      5. {% trans %}Find the section whose settings you want to change, such as Format or Filter criteria (see Managing content listings (views) for more information).{% endtrans %}
                                                                                      6. {% trans %}For sections containing lists (such as Fields and Filter criteria), to modify or delete an existing item, click the name of the item. To add a new item, click Add in the drop-down list. To change the order of items, click Rearrange in the drop-down list.{% endtrans %}