diff --git a/src/Plugin/ProjectBrowserSourceBase.php b/src/Plugin/ProjectBrowserSourceBase.php index 14fdc42403870d9bce17e35e9068f214cb84795b..7e3f57b33a219dec1ec9921fffa15444b24aff2a 100644 --- a/src/Plugin/ProjectBrowserSourceBase.php +++ b/src/Plugin/ProjectBrowserSourceBase.php @@ -128,7 +128,7 @@ abstract class ProjectBrowserSourceBase extends PluginBase implements ProjectBro return [ 'usage_total' => [ 'id' => 'usage_total', - 'text' => $this->t('Active installs'), + 'text' => $this->t('Most Popular'), ], 'a_z' => [ 'id' => 'a_z', @@ -140,11 +140,11 @@ abstract class ProjectBrowserSourceBase extends PluginBase implements ProjectBro ], 'created' => [ 'id' => 'created', - 'text' => $this->t('Recently created'), + 'text' => $this->t('Newest First'), ], 'best_match' => [ 'id' => 'best_match', - 'text' => $this->t('Best match'), + 'text' => $this->t('Most Relevant'), ], ]; } diff --git a/tests/src/FunctionalJavascript/ProjectBrowserUiTest.php b/tests/src/FunctionalJavascript/ProjectBrowserUiTest.php index 5ef6392623e8de91f8917236b024707612dc2010..262056db1607ba38c044a160ed25c4aa446d1eba 100644 --- a/tests/src/FunctionalJavascript/ProjectBrowserUiTest.php +++ b/tests/src/FunctionalJavascript/ProjectBrowserUiTest.php @@ -434,10 +434,10 @@ class ProjectBrowserUiTest extends WebDriverTestBase { $this->svelteInitHelper('text', 'Clear Filters'); $this->pressWithWait('Clear filters'); $assert_session->elementsCount('css', '#pb-sort option', 4); - $this->assertEquals('Active installs', $this->getElementText('#pb-sort option:nth-child(1)')); + $this->assertEquals('Most Popular', $this->getElementText('#pb-sort option:nth-child(1)')); $this->assertEquals('A-Z', $this->getElementText('#pb-sort option:nth-child(2)')); $this->assertEquals('Z-A', $this->getElementText('#pb-sort option:nth-child(3)')); - $this->assertEquals('Recently created', $this->getElementText('#pb-sort option:nth-child(4)')); + $this->assertEquals('Newest First', $this->getElementText('#pb-sort option:nth-child(4)')); // Select 'A-Z' sorting order. $this->sortBy('a_z'); @@ -495,7 +495,7 @@ class ProjectBrowserUiTest extends WebDriverTestBase { 'Kangaroo', ]); - // Select 'Recently created' option. + // Select 'Newest First' option. $this->sortBy('created'); // Assert that the projects are listed in descending order of their date of