Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2020-05-13 16:29:35 +0300
committerGary Kim <gary@garykim.dev>2020-05-15 09:26:50 +0300
commit8e3de41b4b6a53db8996d9117eb6c1b41bb6cc5c (patch)
tree332967b2bb4feaefd744c910d6e96ed63cadacfb /tests/lib/App
parentc6da7ec24cc913af152b4df35a52888f92a4635a (diff)
l10n: Add "The" before "Following"
Diffstat (limited to 'tests/lib/App')
-rw-r--r--tests/lib/App/DependencyAnalyzerTest.php8
1 files changed, 4 insertions, 4 deletions
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']]],
];
}