diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2020-05-13 15:29:35 +0200 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2020-05-15 14:26:50 +0800 |
commit | 8e3de41b4b6a53db8996d9117eb6c1b41bb6cc5c (patch) | |
tree | 332967b2bb4feaefd744c910d6e96ed63cadacfb /lib/private/App/DependencyAnalyzer.php | |
parent | c6da7ec24cc913af152b4df35a52888f92a4635a (diff) | |
download | nextcloud-server-8e3de41b4b6a53db8996d9117eb6c1b41bb6cc5c.tar.gz nextcloud-server-8e3de41b4b6a53db8996d9117eb6c1b41bb6cc5c.zip |
l10n: Add "The" before "Following"
Diffstat (limited to 'lib/private/App/DependencyAnalyzer.php')
-rw-r--r-- | lib/private/App/DependencyAnalyzer.php | 4 |
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; } |