Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/language_request.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Language Request
description: Request a new language to be added to CrowdIn for you to translate
description: Request a new language to be added to Crowdin for you to translate
labels: [":earth_africa: Translations"]
assignees:
- ssddanbrown
Expand All @@ -23,7 +23,7 @@ body:
This issue template is to request a new language be added to our [Crowdin translation management project](https://crowdin.com/project/bookstack).
Please don't use this template to request a new language that you are not prepared to provide translations for.
options:
- label: I confirm I'm offering to help translate for this new language via CrowdIn.
- label: I confirm I'm offering to help translate for this new language via Crowdin.
required: true
- type: markdown
attributes:
Expand Down
8 changes: 5 additions & 3 deletions tests/LanguageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ protected function setUp(): void
public function test_locales_config_key_set_properly()
{
$configLocales = config('app.locales');
sort($configLocales);
sort($this->langs);
$this->assertEquals(implode(':', $configLocales), implode(':', $this->langs), 'app.locales configuration variable does not match those found in lang files');

$this->assertEmpty(
array_diff($configLocales, $this->langs),
'app.locales configuration variable does not match those found in lang files'
);
}

// Not part of standard phpunit test runs since we sometimes expect non-added langs.
Expand Down