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
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-05-15 20:44:04 +0300
committerGitHub <noreply@github.com>2020-05-15 20:44:04 +0300
commitd23c7fff2a68abc6a53a83bd4f2ca0427d5d41a8 (patch)
tree5990cb613a7c06d37f0c9b2664691c7bd43b6933 /lib
parentf80f2a22d702efacaf7226f5ee60d76d6b637061 (diff)
parent8e3de41b4b6a53db8996d9117eb6c1b41bb6cc5c (diff)
Merge pull request #20957 from nextcloud/Valdnet-patch-5
l10n: Adding "The" before "Following"
Diffstat (limited to 'lib')
-rw-r--r--lib/private/App/DependencyAnalyzer.php4
1 files changed, 2 insertions, 2 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;
}