1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Languages: Enabled Welsh option

This commit is contained in:
Dan Brown
2024-10-04 10:59:34 +01:00
parent 6646dcc24d
commit b1a3ea1aa4
2 changed files with 3 additions and 1 deletions

View File

@ -35,7 +35,8 @@ class LanguageTest extends TestCase
$diffs = array_diff($this->langs, $dropdownLocales);
if (count($diffs) > 0) {
$diffText = implode(',', $diffs);
$this->addWarning("Languages: {$diffText} found in files but not in language select dropdown.");
$warning = "Languages: {$diffText} found in files but not in language select dropdown.";
$this->fail($warning);
}
$this->assertTrue(true);
}