Move locales to single json files & Replace laravel-vue-i18n with vue-i18n

This commit is contained in:
Bubka
2025-06-20 18:14:21 +02:00
parent 01e56284ca
commit 6f419cfbcb
412 changed files with 3531 additions and 30057 deletions

View File

@@ -160,7 +160,7 @@ class GroupControllerTest extends FeatureTestCase
{
$this->actingAs($this->user, 'api-guard')
->json('POST', '/api/v1/groups', [
'name' => __('commons.all'),
'name' => __('message.all'),
])
->assertStatus(422);
}
@@ -222,7 +222,7 @@ class GroupControllerTest extends FeatureTestCase
->json('GET', '/api/v1/groups/0')
->assertOk()
->assertJsonFragment([
'name' => __('commons.all'),
'name' => __('message.all'),
'twofaccounts_count' => $userTwofaccounts->count(),
]);
}