From 8e3de41b4b6a53db8996d9117eb6c1b41bb6cc5c Mon Sep 17 00:00:00 2001
From: Valdnet <47037905+Valdnet@users.noreply.github.com>
Date: Wed, 13 May 2020 15:29:35 +0200
Subject: [PATCH] l10n: Add "The" before "Following"

---
 lib/private/App/DependencyAnalyzer.php   | 4 ++--
 tests/lib/App/DependencyAnalyzerTest.php | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/lib/private/App/DependencyAnalyzer.php b/lib/private/App/DependencyAnalyzer.php
index f950a5bd91f..63d84cd5a43 100644
--- a/lib/private/App/DependencyAnalyzer.php
+++ b/lib/private/App/DependencyAnalyzer.php
@@ -195,7 +195,7 @@ class DependencyAnalyzer {
 		}, $supportedDatabases);
 		$currentDatabase = $this->platform->getDatabase();
 		if (!in_array($currentDatabase, $supportedDatabases)) {
-			$missing[] = (string)$this->l->t('Following databases are supported: %s', [implode(', ', $supportedDatabases)]);
+			$missing[] = (string)$this->l->t('The following databases are supported: %s', [implode(', ', $supportedDatabases)]);
 		}
 		return $missing;
 	}
@@ -298,7 +298,7 @@ class DependencyAnalyzer {
 		}
 		$currentOS = $this->platform->getOS();
 		if (!in_array($currentOS, $oss)) {
-			$missing[] = (string)$this->l->t('Following platforms are supported: %s', [implode(', ', $oss)]);
+			$missing[] = (string)$this->l->t('The following platforms are supported: %s', [implode(', ', $oss)]);
 		}
 		return $missing;
 	}
diff --git a/tests/lib/App/DependencyAnalyzerTest.php b/tests/lib/App/DependencyAnalyzerTest.php
index 09a939f4855..a7d42d28baf 100644
--- a/tests/lib/App/DependencyAnalyzerTest.php
+++ b/tests/lib/App/DependencyAnalyzerTest.php
@@ -432,8 +432,8 @@ class DependencyAnalyzerTest extends TestCase {
 		return [
 			[[], null],
 			[[], []],
-			[['Following platforms are supported: ANDROID'], 'ANDROID'],
-			[['Following platforms are supported: WINNT'], ['WINNT']]
+			[['The following platforms are supported: ANDROID'], 'ANDROID'],
+			[['The following platforms are supported: WINNT'], ['WINNT']]
 		];
 	}
 
@@ -493,8 +493,8 @@ class DependencyAnalyzerTest extends TestCase {
 			// non BC - in case on databases are defined -> all are supported
 			[[], null],
 			[[], []],
-			[['Following databases are supported: mongodb'], 'mongodb'],
-			[['Following databases are supported: sqlite, postgres'], ['sqlite', ['@value' => 'postgres']]],
+			[['The following databases are supported: mongodb'], 'mongodb'],
+			[['The following databases are supported: sqlite, postgres'], ['sqlite', ['@value' => 'postgres']]],
 		];
 	}
 
-- 
GitLab