Issue #3283602 by urvashi_vora, eleonel, mrinalini9, ankithashetty, alexpott, Munavijayalakshmi: Fix repeated words

merge-requests/2523/head
Alex Pott 2022-07-17 10:00:33 +01:00
parent a9edcb0db4
commit 153f1a47f3
No known key found for this signature in database
GPG Key ID: BDA67E7EE836E5CE
15 changed files with 17 additions and 17 deletions

View File

@ -415,7 +415,7 @@ drupal.autocomplete:
misc/autocomplete.js: { weight: -1 }
# The remaining JavaScript assets previously came from core/jquery.ui, a
# deprecated library.
# All weights are based on on the requirements defined within each file.
# All weights are based on the requirements defined within each file.
# @todo replace with solution in https://drupal.org/node/3076171
assets/vendor/jquery.ui/ui/widgets/autocomplete-min.js: { weight: -11.7, minified: true }
assets/vendor/jquery.ui/ui/labels-min.js: { weight: -11.7, minified: true }
@ -527,7 +527,7 @@ drupal.dialog:
misc/dialog/dialog.jquery-ui.js: {}
# The remaining JavaScript assets previously came from core/jquery.ui, a
# deprecated library.
# All weights are based on on the requirements defined within each file.
# All weights are based on the requirements defined within each file.
# @todo replace with solution in https://drupal.org/node/2158943
assets/vendor/jquery.ui/ui/widgets/dialog-min.js: { weight: -11.4, minified: true }
assets/vendor/jquery.ui/ui/widgets/button-min.js: { weight: -11.5, minified: true }

View File

@ -443,7 +443,7 @@ abstract class Database {
unset(self::$connections[$key]);
}
// Force garbage collection to run. This ensures that client connection
// objects and results in the connection being being closed are destroyed.
// objects and results in the connection being closed are destroyed.
gc_collect_cycles();
}

View File

@ -21,7 +21,7 @@ class Error {
const ERROR = 3;
/**
* The the default message for logging errors.
* The default message for logging errors.
*/
const DEFAULT_ERROR_MESSAGE = '%type: @message in %function (line %line of %file).';

View File

@ -163,7 +163,7 @@ class BlockTest extends BlockTestBase {
'theme' => $default_theme,
]);
// Verify that one link is found, with the the expected link text.
// Verify that one link is found, with the expected link text.
$xpath = $this->assertSession()->buildXPathQuery('//a[contains(@href, :href)]', [':href' => $add_url->toString()]);
$this->assertSession()->elementsCount('xpath', $xpath, 1);
$this->assertSession()->elementTextEquals('xpath', $xpath, 'Place block');

View File

@ -189,7 +189,7 @@ class ConfigEntityTest extends BrowserTestBase {
$this->assertTrue($same_id->isNew());
try {
$same_id->save();
$this->fail('Not possible to overwrite an entity entity.');
$this->fail('Not possible to overwrite an entity.');
}
catch (EntityStorageException $e) {
// Expected exception; just continue testing.

View File

@ -17,7 +17,7 @@ top_level: true
<li>{% trans %}Boolean, Number (provided by the core system): Stores true/false values and numbers{% endtrans %}</li>
<li>{% trans %}Comment (provided by the core Comment module): Allows users to add comments to an entity{% endtrans %}</li>
<li>{% trans %}Date, Timestamp (Datetime module): Stores dates and times{% endtrans %}</li>
<li>{% trans %}Date range (Datetime range module): Stores time/date periods with a start and and an end{% endtrans %}</li>
<li>{% trans %}Date range (Datetime range module): Stores time/date periods with a start and an end{% endtrans %}</li>
<li>{% trans %}Email (core system): Stores email addresses{% endtrans %}</li>
<li>{% trans %}Link (Link module): Stores URLs and link text{% endtrans %}</li>
<li>{% trans %}List (Options module): Stores values chosen from pre-defined lists, where the values can be numbers or text; see section below for more on list fields.{% endtrans %}</li>

View File

@ -22,7 +22,7 @@ related:
<h2>{% trans %}Steps{% endtrans %}</h2>
<ol>
<li>{% trans %}In the <em>Manage</em> administrative menu, navigate to <em>Structure</em> &gt; <em>{{ views }}</em>. A list of all views is shown.{% endtrans %}</li>
<li>{% trans %}Find the view that you would like to edit, and click <em>Edit</em> from the the dropdown button. Note that bulk operations work best in a view with a Page display, and a Table format.{% endtrans %}</li>
<li>{% trans %}Find the view that you would like to edit, and click <em>Edit</em> from the dropdown button. Note that bulk operations work best in a view with a Page display, and a Table format.{% endtrans %}</li>
<li>{% trans %}If there is not already an <em>Operations bulk form</em> in the <em>Fields</em> list for the view, click <em>Add</em> in the <em>Fields</em> section to add it. (The exact name of the bulk form field will vary, and may contain keywords like "bulk update", "form element" or "operations" -- not to be confused with <em>operations links</em>, which are applied to each item in a row.) If the bulk operations field already exists, click the field name to edit its settings.{% endtrans %}</li>
<li>{% trans %}Check the action(s) you want to make available in the <em>Selected actions</em> list and click <em>Apply (all displays)</em>.{% endtrans %}</li>
<li>{% trans %}Verify that the <em>Access</em> settings for the view are at least as restrictive as the permissions necessary to perform the bulk operations. People with permission to see the view, but who don't have permission to do the bulk operations, will experience problems.{% endtrans %}</li>

View File

@ -97,7 +97,7 @@ abstract class MigrateSqlSourceTestBase extends MigrateSourceTestBase {
/** @var MemoryCounterBackend $cache **/
$cache = \Drupal::cache('migrate');
if ($expected_cache_key) {
// Verify the the computed cache key.
// Verify the computed cache key.
$property = $reflector->getProperty('cacheKey');
$property->setAccessible(TRUE);
$this->assertSame($expected_cache_key, $property->getValue($plugin));

View File

@ -135,9 +135,9 @@ class TourLegacyTest extends WebDriverTestBase {
*/
public function providerTestTourTipMarkup() {
return [
'Using the the deprecated TipPlugin with Stable theme' => ['tour-test-legacy'],
'Using the deprecated TipPlugin with Stable theme' => ['tour-test-legacy'],
'Using current TourTipPlugin with Stable theme' => ['tour-test-1'],
'Using the the deprecated TipPlugin with Stable 9 theme' => ['tour-test-legacy', 'stable9'],
'Using the deprecated TipPlugin with Stable 9 theme' => ['tour-test-legacy', 'stable9'],
'Using current TourTipPlugin with Stable 9 theme' => ['tour-test-1', 'stable9'],
];
}

View File

@ -288,7 +288,7 @@ class JqueryUiLibraryAssetsTest extends BrowserTestBase {
* Confirms jQuery UI assets load as expected.
*
* Compares the jQuery assets that currently load against a list of the assets
* that loaded prior to the the deprecation of all remaining core jQuery UI
* that loaded prior to the deprecation of all remaining core jQuery UI
* libraries.
*
* While this is similar to testLibraryAssetLoadingOrder(), it is a separate

View File

@ -139,7 +139,7 @@ class KeyValueContentEntityStorageTest extends KernelTestBase {
$this->assertTrue($same_id->isNew());
try {
$same_id->save();
$this->fail('Not possible to overwrite an entity entity.');
$this->fail('Not possible to overwrite an entity.');
}
catch (EntityStorageException $e) {
// Expected exception; just continue testing.

View File

@ -159,7 +159,7 @@
background-color: transparent
/*
When in Windows high contrast mode, FF will will not output either background
When in Windows high contrast mode, FF will not output either background
images or SVGs that are nested directly within a <button> element, so we add a <span>.
*/
}

View File

@ -85,7 +85,7 @@
background-color: transparent;
/*
When in Windows high contrast mode, FF will will not output either background
When in Windows high contrast mode, FF will not output either background
images or SVGs that are nested directly within a <button> element, so we add a <span>.
*/
& .icon--search {

View File

@ -205,7 +205,7 @@
background-color: transparent
/*
When in Windows high contrast mode, FF will will not output either background
When in Windows high contrast mode, FF will not output either background
images or SVGs that are nested directly within a <button> element, so we add a <span>.
*/
}

View File

@ -102,7 +102,7 @@
background-color: transparent;
/*
When in Windows high contrast mode, FF will will not output either background
When in Windows high contrast mode, FF will not output either background
images or SVGs that are nested directly within a <button> element, so we add a <span>.
*/
& .icon--search {