}, $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;
}
}
$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;
}
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']]
];
}
// 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']]],
];
}