Commit 216df2ab authored by mukesh88's avatar mukesh88 Committed by Damien McKenna
Browse files

Issue #3353594 by mukesh88, rckstr_rohan, DamienMcKenna: Spellung misteaks.

parent 30ee0152
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@ Metatag 8.x-1.x-dev, 2022-xx-xx
  in metatag_open_graph update hooks.
#3352508 by DamienMcKenna, klimp: Resolve access check errors for D10
  compatibility.
#3353594 by mukesh88, rckstr_rohan, DamienMcKenna: Spellung misteaks.


Metatag 8.x-1.22, 2022-09-29
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ function metatag_help($route_name, RouteMatchInterface $route_match) {
      $output = '<h2>' . (string) new TranslatableMarkup('About') . '</h2>';
      $output .= '<p>' . (string) new TranslatableMarkup('This module allows a site to automatically provide structured metadata, aka "meta tags", about the site and individual pages.');
      $output .= '<p>' . (string) new TranslatableMarkup('In the context of search engine optimization, providing an extensive set of meta tags may help improve the site\'s and pages\' rankings, thus may aid with achieving a more prominent display of the content within search engine results. They can also be used to tailor how content is displayed when shared on social networks. For additional information, see the <a href=":online">online documentation for Metatag</a>.', [':online' => 'https://www.drupal.org/node/1774342']) . '</p>';
      $output .= '<h3>' . (string) new TranslatableMarkup('Intended worflow') . '</h3>';
      $output .= '<h3>' . (string) new TranslatableMarkup('Intended workflow') . '</h3>';
      $output .= '<p>' . (string) new TranslatableMarkup('The module uses <a href=":tokens">"tokens"</a> to automatically fill in values for different meta tags. Specific values may also be filled in.', [':tokens' => Url::fromRoute('help.page', ['name' => 'token'])->toString()]) . '</p>';
      $output .= '<p>' . (string) new TranslatableMarkup('The best way of using Metatag is as follows:') . '</p>';
      $output .= '<ol>';
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ allowing for very fine controlled access over meta tag customization.
Usage
--------------------------------------------------------------------------------
* Enable the Metatag Extended Permissions module.
* Assign the appropriate permissions via the admin/people/permisisons page.
* Assign the appropriate permissions via the admin/people/permissions page.


Known issues
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ function metatag_routes_help($route_name, RouteMatchInterface $route_match) {
 * Implements hook_metatags_alter().
 */
function metatag_routes_metatags_alter(array &$metatags, array $context) {
  // Ignore some system routes that are not approrpriate for meta tags.
  // Ignore some system routes that are not appropriate for meta tags.
  if (metatag_is_current_route_supported()) {
    // Look to see if a configuration was assigned for this route.
    $current_route = \Drupal::routeMatch()->getRouteName();
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ class MetatagViewsBasicsTest extends BrowserTestBase {
    // Confirm what the page title looks like by default.
    $this->assertSession()->titleEquals('Monthly archive | Drupal');

    // Load the Arcive view.
    // Load the Archive view.
    $this->drupalGet('/admin/structure/views/view/archive');
    $this->assertSession()->statusCodeEquals(200);

Loading